:root {
    --ad-menu-size: 360px;
}


.menu-disabled {
    color: gray !important;           /* cinza para parecer desabilitado */
    pointer-events: none;  /* impede clique */
    cursor: not-allowed;   /* muda o cursor */
    text-decoration: none; /* opcional: remove sublinhado */
}

.sidebar-top-icon {
    width: 260px;
    height: 260px;
    display: inline-block;
    border-radius: 50%;
    line-height: 30px;
    font-size: 16px;
    text-align: center;
}


.kanban-stage:first-child {
                    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3) !important;
                    border: 2px solid #667eea !important;
                }
                
.kanban-stage:first-child .kanban-stage-header {
    font-weight: bold !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2) !important;
    padding: 10px 15px !important;
    border-radius: 6px 6px 0 0 !important;
    margin: -1px -1px 10px -1px !important;
}

.kanban-stage:first-child .kanban-stage-counter {
    background: rgba(255, 255, 255, 0.25) !important;
    font-weight: bold !important;
}

.kanban-stage:first-child .kanban-item {
    border: 2px solid #667eea !important;
}

.kanban-stage {
    border-radius: 8px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08) !important;
    transition: all 0.3s ease !important;
    overflow-y: auto;
    height: 572px;
}

@media (min-height: 1000px) {
    .kanban-stage {
        height: calc(100vh - 430px);
    }
}

.kanban-stage:not(:first-child) .kanban-stage-header {
    color: #495057 !important;
    font-weight: 600 !important;
}

.kanban-stage:hover {
    box-shadow: 0 3px 8px rgba(0,0,0,0.12) !important;
}

.kanban-item {
    border-radius: 8px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease !important;
}

.kanban-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
    transform: translateY(-2px) !important;
}

.badge-movimento-entrada {
    position: absolute;
    bottom: 5px;
    right: 5px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0 8px;
    background: #28a745;
    color: white;
    border-radius: 4px;
    font-size: 10px;
    box-shadow: 0 1px 3px rgba(40, 167, 69, 0.3);
    white-space: nowrap;
}

.badge-movimento-entrada i {
    font-size: 11px;
}

.badge-movimento-entrada span {
    font-weight: 600;
    font-size: 10px;
}

.badge-movimento-saida {
    position: absolute;
    bottom: 5px;
    right: 5px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0 8px;
    background: #dc3545;
    color: white;
    border-radius: 4px;
    font-size: 10px;
    box-shadow: 0 1px 3px rgba(220, 53, 69, 0.3);
    white-space: nowrap;
}

.badge-movimento-saida i {
    font-size: 11px;
}

.badge-movimento-saida span {
    font-weight: 600;
    font-size: 10px;
}

.kanban-item a {
    transition: all 0.2s ease;
}

.kanban-item a:hover {
    text-decoration: underline !important;
    opacity: 0.8;
}