/* ---------- Global Fix ---------- */
html, body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;   /* 🔥 bottom slide OFF */
}

/* ---------- Body ---------- */
body {
    background: #f4f6f8;
    font-family: 'Noto Sans Tamil', sans-serif;
}

/* ---------- Wrapper ---------- */
.donors-wrapper {
    width: 100%;
    max-width: 1200px;    /* limit content width */
    margin: 20px auto;
    padding: 0 10px;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* ---------- Page Title ---------- */
.page-title {
    text-align: center;
    font-size:20px;
    color: #0b3c5d;
    margin-bottom: 20px;
    font-weight:600;
}

/* ---------- Table ---------- */
.donors-table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    background: #fff;
    table-layout: fixed;   /* 🔥 important */
}

/* ---------- Table Cells ---------- */
.donors-table th,
.donors-table td {
    border: 1px solid #cfd8dc;
    padding: 10px;
    vertical-align: top;
    word-break: break-word;   /* long tamil text wrap */
    white-space: normal;
    line-height:1.8;
    font-size:14px;
    font-weight:500;

}

/* ---------- Table Header ---------- */
.donors-table th {
    background: #e3f2fd;
    color: #0d47a1;
    text-align: center;
    font-size:15px;
}

/* ---------- Align Columns ---------- */
.donors-table td:nth-child(1),
.donors-table td:nth-child(4),
.donors-table td:nth-child(5) {
    text-align: center;
    font-weight: bold;
}

/* ---------- REMOVE money-note ---------- */
.money-note {
    display: none;   /* ❌ hide yellow note */
}

/* ---------- Image safety (header logos) ---------- */
img {
    max-width: 100%;
    height: auto;
}
