/* ===== General Style ===== */
body {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    background: linear-gradient(to bottom right, #f4f8fc, #e8f1fb);
    color: #12344d;
    margin: 0;
    padding: 40px 20px;
}

/* ===== Titles ===== */
h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 5px;
    color: #0b4f6c;
    letter-spacing: 1px;
}

h3 {
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    color: #5c7285;
    margin-top: 0;
    margin-bottom: 35px;
}

/* ===== Table Container ===== */
.table-container {
    width: 95%;
    max-width: 1200px;
    margin: auto;
    overflow-x: auto;
}

/* ===== Table ===== */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 45, 98, 0.12);
}

/* ===== Header ===== */
th {
    background: linear-gradient(to right, #0b4f6c, #1b6ca8);
    color: white;
    padding: 18px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Table Cells ===== */
td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid #e5edf5;
    font-size: 0.95rem;
    color: #234;
}

/* ===== Alternating Rows ===== */
tr:nth-child(even) {
    background-color: #f7fbff;
}

/* ===== Hover Effect ===== */
tr:hover {
    background-color: #dcefff;
    transition: 0.25s ease;
}

/* ===== Last Row Border Fix ===== */
tr:last-child td {
    border-bottom: none;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 0.9rem;
    }

    th,
    td {
        padding: 12px;
        font-size: 0.85rem;
    }
}