/* ===================== PAGE STRUCTURE ===================== */

body .students-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    
}

body h1 {
    text-align: center;
    margin-bottom: 20px;
}

/* ===================== TABLE MODEL (SAME AS STUDENTS) ===================== */

.subject-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.subject-table th,
.subject-table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

/* Header */
.subject-table th {
    background-color: #d0e2ff; /* light blue */
    font-weight: bold;
}

/* Zebra rows */
.subject-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Hover */
.subject-table tbody tr:hover {
    background-color: #f1f1f1;
}

/* ===================== STICKY HEADER ===================== */

.table-scroll {
    max-height: 500px;
    overflow-y: auto;
}

.table-scroll thead th {
    position: sticky;
    top: 0;
    background: #d0e2ff;
    z-index: 5;
}

/* ===================== SUMMARY TABLE SPACING ===================== */

.table-summary {
    margin-top: 30px;
}
