body {
    font-family: "Segoe UI", sans-serif;
    background: #f6f7fb;
}

.subjects {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
}

.subjects h1 {
    text-align: center;
    color: #1D4ED8;
    margin-bottom: 30px;
}

/* FILTER */
.filter-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    align-items: center;
}

.filter-box label {
    font-weight: 500;
}

.filter-box select {
    padding: 10px 18px;
    border-radius: 8px;
    border: 2px solid #F59E0B;
    font-size: 15px;
    cursor: pointer;
}

/* TITLE */
#title {
    text-align: center;
    color: #222;
    margin-bottom: 30px;
}

/* TABLES */
.tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* BOX */
.table-box {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* HEADER */
.table-box h3 {
    background: #F59E0B;
    color: white;
    padding: 15px;
    text-align: center;
}

/* TABLE */
table {
    width: 100%;
    border-collapse: collapse;
}

td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

tr:hover {
    background: #fff7ea;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .tables {
        grid-template-columns: 1fr;
    }
}