:root {
  --cor-principal: #E91E63;
  --cor-secundaria: #FFC107;
  --cor-texto: #263238;
  --cor-fundo: #F5F7FA;
  --cor-sucesso: #4CAF50;
}

body { font-family: 'Inter', sans-serif; }
.modal-enter { opacity: 0; transform: scale(0.95); }
.modal-enter-active { opacity: 1; transform: scale(1); transition: all 0.2s ease-out; }
.modal-leave-active { opacity: 0; transform: scale(0.95); transition: all 0.2s ease-in; }
/* Estilo para o botão desativado */
button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}


/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--cor-fundo);
}
::-webkit-scrollbar-thumb {
    background-color: var(--cor-principal);
    border-radius: 4px;
    border: 2px solid var(--cor-fundo);
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--cor-secundaria);
}

/* Estilos da nova barra lateral */
aside nav a.sidebar-active {
    background-color: #4299E1; /* Azul, como na imagem */
    color: white;
}
