/**
 * Estilos para a página de Histórico
 * History Page Styles
 */

.table-dark {
    color: #212529 !important; /* Preto em vez de branco */
}

.table-dark th {
    color: #212529 !important; /* Força cor preta nos cabeçalhos */
    border-color: #dee2e6 !important; /* Bordas mais claras para contraste */
}

/* Filter styling */
.filter-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border: 1px solid #dee2e6;
    transition: box-shadow 0.2s ease-in-out;
}

.filter-section:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-check:checked + .btn {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Toast container styling */
#toastContainer {
    z-index: 9999;
}

/* Export button animations */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner-border-sm {
    width: 0.875rem;
    height: 0.875rem;
}

/* Advanced search styling */
.form-control:focus, .form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Quick filter buttons hover effect */
.btn-group .btn {
    transition: all 0.2s ease-in-out;
}

.btn-group .btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Simple title truncation */
.truncate-title {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}