/* Additional CSS fixes for reports */

/* Fix table header visibility issues */
.table-dark th {
    color: white !important;
    background-color: #212529 !important;
    border-color: #32383e !important;
    font-weight: 600 !important;
}

/* Ensure better contrast for table headers */
.table thead th {
    background-color: #f8f9fa !important;
    color: #212529 !important;
    border-bottom: 2px solid #dee2e6 !important;
    font-weight: 600 !important;
}

/* Override any conflicting styles */
.table-striped .table-dark th {
    background-color: #212529 !important;
    color: white !important;
}

/* Reports specific improvements */
.report-card {
    transition: all 0.2s ease-in-out;
    border: 1px solid #dee2e6;
}

.report-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.report-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.favorite-btn {
    transition: transform 0.2s ease;
}

.favorite-btn:hover {
    transform: scale(1.2);
}

.favorite-card {
    border-color: #ffc107 !important;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

/* Better breadcrumb styling */
.breadcrumb {
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
}