        .dashboard-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white; !important
            border-radius: 9px;
            transition: transform 0.3s ease;
        }

.dashboard-card .card-body,
.dashboard-card h5,
.dashboard-card .metric-value,
.dashboard-card small,
.dashboard-card .fas {
    color: white;
    transition: color 0.3s ease; /* Adiciona uma transição suave para a mudança de cor */
}

        .dashboard-card:hover {
            transform: translateY(-5px);
            color: LightYellow;
        }

.dashboard-card:hover h5,
.dashboard-card:hover .metric-value,
.dashboard-card:hover small,
.dashboard-card:hover .fas {
    color: #FFFFAA; /* Um tom de amarelo claro (LightYellow) */
}

        .metric-value {
            font-size: 3.5rem;
            font-weight: bold;
        }
        .card-custom {
            border-radius: 20px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .status-badge {
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 1.0rem;
        }
        .status-finalizado { background-color: #ffc107; color: black; }
        .status-andamento { background-color: #17a2b8; color: white; }
        .status-consulado { background-color: #28a745; color: white; }
        .status-devolvido { background-color: #dc3545; color: white; }
        .error-alert {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1050;
            max-width: 400px;
        }

/* Novo status para Pendencia (Laranja) */
.status-pendencia { 
    background-color: #fd7e14; 
    color: white; 
}

/* Status distinto para VFS Processado (Cinza) */
.status-vfs { 
    background-color: #6c757d; 
    color: white; 
}

.privacy-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.privacy-overlay.active {
    opacity: 1;
    visibility: visible;
}

.privacy-modal {
    background: #2a2a2a;
    border-radius: 15px;
    padding: 35px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.privacy-overlay.active .privacy-modal {
    transform: translateY(0);
}

.privacy-modal h2 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

.privacy-modal p {
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 25px;
    font-family: Arial, sans-serif;
}

.privacy-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.privacy-btn:hover {
    background: #333;
}

/* Por padrão, a classe não faz nada */
.coluna-compacta-mobile {
  /* Estilos para desktop, se houver */
}

/* Aplica os estilos apenas em telas de celular */
/* 576px é o ponto de quebra do Bootstrap para telas pequenas (sm) */
@media (max-width: 575.98px) {
  .coluna-compacta-mobile {
    padding-left: 5px;  /* Reduz o espaçamento interno esquerdo */
    padding-right: 5px; /* Reduz o espaçamento interno direito */
    /* Você pode adicionar qualquer outro estilo aqui, como diminuir a fonte */
    /* font-size: 14px; */
  }
}

/* Adicione a regra para o celular aqui dentro */
@media (max-width: 768px) {
        .status-badge {
            padding: 0.3rem 0.3rem;
            border-radius: 20px;
            font-size: 0.5rem;
            text-align: center;
        }
        .status-finalizado { background-color: #ffc107; color: black; }
        .status-andamento { background-color: #17a2b8; color: white; }
        .status-consulado { background-color: #28a745; color: white; }
        .status-devolvido { background-color: #dc3545; color: white; }
        .error-alert {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1050;
            max-width: 400px;
        }

/* Novo status para Pendencia (Laranja) */
.status-pendencia { 
    background-color: #fd7e14; 
    color: white; 
}

/* Status distinto para VFS Processado (Cinza) */
.status-vfs { 
    background-color: #6c757d; 
    color: white; 
    }
    
    .td {
        font-size: 8px;
    }
    
}

        /* Footer */
        .footer {
            text-align: center;
            padding: 30px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            margin-top: 30px;
            color: #666;
        }