/* Report Table Styles — loaded via FilamentAsset for dark mode support */

.report-wrapper {
    overflow-x: auto;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dark .report-wrapper {
    border-color: #374151;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.report-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}

.dark .report-title {
    color: #e5e7eb;
}

.report-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.report-header {
    background-color: #1e3a5f;
    color: #fff;
}

.report-header th {
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    border: 1px solid #334f74;
}

.report-header th.report-cell--center {
    text-align: center;
}

.report-row {
    background-color: #ffffff;
}

.dark .report-row {
    background-color: transparent;
}

.report-row--even {
    background-color: #f9fafb;
}

.dark .report-row--even {
    background-color: rgba(31, 41, 55, 0.5);
}

.report-cell {
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
}

.dark .report-cell {
    border-color: #374151;
    color: #e5e7eb;
}

.report-cell--num {
    color: #9ca3af;
    text-align: center;
}

.report-cell--bold {
    font-weight: 600;
}

.report-cell--center {
    text-align: center;
}

.report-cell--highlight {
    font-weight: 700;
    font-size: 1rem;
    color: #1e3a5f;
}

.dark .report-cell--highlight {
    color: #93c5fd;
}

.report-cell--muted {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 400;
}

.report-cell--code {
    font-weight: 700;
    color: #1e3a5f;
    font-family: monospace;
}

.dark .report-cell--code {
    color: #93c5fd;
}

.report-cell--credit {
    color: #9ca3af;
    font-size: 0.8rem;
}

.report-course-divider {
    padding: 2px 0;
    border-bottom: 1px dotted #e5e7eb;
}

.dark .report-course-divider {
    border-bottom-color: #374151;
}

.report-footer {
    background-color: #f3f4f6;
    font-weight: 700;
}

.dark .report-footer {
    background-color: rgba(31, 41, 55, 0.7);
}

.report-footer td {
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
}

.dark .report-footer td {
    border-color: #374151;
    color: #e5e7eb;
}

.report-footer .report-cell--highlight {
    color: #1e3a5f;
}

.dark .report-footer .report-cell--highlight {
    color: #93c5fd;
}

.report-empty {
    margin-top: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    color: #9ca3af;
}

.dark .report-empty {
    border-color: #374151;
    color: #6b7280;
}
