/* GLOBAL FIX – bottom slide STOP */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;   /* 🔥 main fix */
}

/* Page Title */
.page-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0;
    color: blue;
}

/* Table Wrapper (NEW – important) */
.table-wrapper {
    width: 100%;
    overflow-x: hidden;   /* 🔥 table side scroll stop */
}

/* Table Box */
.member-table {
    width: 95%;
    max-width: 100%;          /* 🔥 exceed avoid */
    margin: 10px auto;
    border-collapse: collapse;
    font-size: 18px;
    font-family: 'Latha', sans-serif;
    border: 2px solid #0B60A9;
    box-sizing: border-box;   /* 🔥 width safety */
}

/* Header */
.member-table th {
    background: #0074C8;
    color: #fff;
    padding: 12px;
    font-weight: bold;
    border: 1px solid #0B60A9;
    text-align: center;
    white-space: nowrap;   /* 🔥 header break avoid */
    font-size:15px;
}

/* Data Cells */
.member-table td {
    border: 1px solid #0B60A9;
    padding: 12px 15px;
    word-break: break-word;  /* 🔥 long text safe */
    font-size:14px;
}

/* First Column */
.member-table td:first-child {
    text-align: center;
    width: 90px;
    font-weight: bold;
}

/* Alternate Row Colors */
.member-table tr:nth-child(even) {
    background: #D9ECFF;
}

.member-table tr:nth-child(odd) {
    background: #ffffff;
}

/* Hover Effect */
.member-table tr:hover {
    background: #BFE2FF;
    transition: background 0.3s ease;
}
@media (max-width: 1024px) {
    .page-title {
        font-size: 28px;
    }
    .member-table th {
        font-size: 18px;
    }
    .member-table td {
        font-size: 17px;
    }
}
@media (max-width: 768px) {
    .page-title {
        font-size: 24px;
        padding-top: 295px;
        margin-bottom: -20px;
    }
    .member-table th {
        font-size: 16px;
    }
    .member-table td {
        font-size: 15px;
    }
}
@media (max-width: 400px) {
    .page-title {
        font-size: 20px;
    }
    .member-table th {
        font-size: 14px;
    }
    .member-table td {
        font-size: 13px;
    }
}