/* Estilos personalizados */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#erro-msg, #sucesso-msg, #mensagem {
    animation: fadeIn 0.3s ease-in;
}

/* Estilos para formulários */
input:focus, textarea:focus {
    border-color: #3b82f6;
}

/* Transições suaves */
button, a {
    transition: all 0.2s ease-in-out;
}

/* Tabela responsiva */
@media (max-width: 768px) {
    table {
        font-size: 0.875rem;
    }
    
    .container {
        padding: 1rem;
    }
}

/* Hover effects */
tr:hover {
    background-color: #f9fafb;
}

/* Cards com sombra ao hover */
.bg-white:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}
