

/* track record css */

/* =========================
   TRACK RECORD PAGE CSS
   ========================= */

/* MAIN CONTAINER */
.track-record {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

/* TITLE */
.track-record h1 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

/* SUBTEXT */
.track-record p {
    text-align: center;
    color: #475569;
    font-size: 15.5px;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 25px;
}

/* TABLE CONTAINER (SCROLLABLE) */
.table-container {
    overflow-x: auto;
    border-radius: 14px;
}

/* TABLE */
.track-record table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
}

/* HEADER */
.track-record thead {
    background: linear-gradient(90deg, #3b82f6, #6366f1);
}

.track-record thead th {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 10px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 2;
}

/* BODY CELLS */
.track-record tbody td {
    font-size: 14px;
    color: #334155;
    padding: 12px 10px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

/* ZEBRA STRIPES */
.track-record tbody tr:nth-child(even) {
    background: #f8fafc;
}

/* HOVER EFFECT */
.track-record tbody tr:hover {
    background: #e0f2fe;
    transition: 0.2s ease;
}

/* FIRST COLUMN (YEAR) */
.track-record tbody td:first-child {
    font-weight: 600;
    color: #1e3a8a;
}

/* SCROLLBAR (optional modern look) */
.table-container::-webkit-scrollbar {
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.table-container::-webkit-scrollbar-thumb {
    background: #c7d2fe;
    border-radius: 10px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: #a5b4fc;
}

/* RESPONSIVE TEXT */
@media (max-width: 768px) {
    .track-record h1 {
        font-size: 22px;
    }

    .track-record p {
        font-size: 14px;
    }
}