/* ---------- Base Styles ---------- */
body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    /* background: #f5f7fa; */
    background: linear-gradient(135deg, #eef2f3, #dfe9f3);

    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

/* ---------- Container ---------- */
.container {
    max-width: 900px;
    margin: 80px auto;
    background: #ffffff;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.container:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

/* ---------- Typography ---------- */
h1 {
    color: #1e293b;
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

p {
    color: #475569;
    font-size: 1.05rem;
    margin-bottom: 18px;
}

ol,
ul {
    margin-left: 25px;
    color: #475569;
    font-size: 1rem;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* ---------- Table Styling ---------- */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 1rem;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

thead {
    background-color: #2563eb;
    color: #ffffff;
    text-align: left;
}

th,
td {
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
}

tr:hover {
    background-color: #f9fafb;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
    .container {
        margin: 60px 20px;
        padding: 30px;
    }

    h1 {
        font-size: 1.8rem;
    }

    p,
    li {
        font-size: 0.98rem;
    }
}

@media (max-width: 600px) {
    .container {
        margin: 40px 15px;
        padding: 25px;
    }

    h1 {
        font-size: 1.6rem;
    }

    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    thead {
        display: none;
    }

    tr {
        margin-bottom: 15px;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    td {
        display: flex;
        justify-content: space-between;
        padding: 10px;
        border: none;
        font-size: 0.95rem;
    }

    td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #1e293b;
    }
}