/* Estilos personalizados para o sistema */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Cards com sombra suave */
.card {
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
}

.card.shadow-sm:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Cabeçalho de tabelas */
.table-dark th {
    background-color: #343a40;
}

/* Cores e estilos personalizados */
.bg-primary {
    background-color: #0d6efd !important;
}

.text-primary {
    color: #0d6efd !important;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.btn-outline-primary {
    color: #0d6efd;
    border-color: #0d6efd;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: #fff;
}

/* Adicionar margem para ícones nos botões */
.btn i {
    margin-right: 0.25rem;
}

/* Melhorias para formulários */
.form-control:focus, 
.form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Ajustes para o dashboard */
.display-4 {
    font-size: 2.5rem;
    font-weight: 500;
}

/* Animar badges */
.badge {
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.1);
}

/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 1rem;
    }
    
    .d-flex.justify-content-between h2 {
        text-align: center;
    }
    
    .d-flex.justify-content-between div {
        display: flex;
        justify-content: center;
    }
}
