body {
    background: linear-gradient(180deg, #0b0b0e, #121218);
    color: #f6f7fb;
    font-family: "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 24px;
    text-align: center;
}
header {
    margin-bottom: 1.5rem;
}
h1 {
    font-size: 1.8rem;
    color: #ffd36e;
    margin-bottom: 0.3rem;
}
select, input, button {
    background: #17171c;
    color: #fff;
    border: 1px solid #2a2a31;
    padding: 8px 12px;
    border-radius: 8px;
    margin: 5px;
}
select {
    margin: 10px auto;
    display: block;
}
button {
    background: #ffd36e;
    color: #111;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}
button:hover {
    background: #ffe38a;
}
table {
    width: 100%;
    max-width: 800px;
    margin: 1rem auto 0 auto;
    border-collapse: collapse;
    border: 1px solid #2a2a31;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.15);
}
th, td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid #2a2a31;
}
th {
    background: #1c1c22;
    color: #ffd36e;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}
tr:hover {
    background: rgba(255, 215, 0, 0.05);
}
.pill {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffea70, #ffd36e, #e3b23c);
    color: #111;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.4),
                            inset 0 0 4px rgba(0, 0, 0, 0.3);
}
footer {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #aaa;
}
footer a {
    color: #ffd36e;
    text-decoration: none;
}

/* Weekly history */
#weeklyHistory {
    margin-top: 2rem;
    text-align: left;
    max-width: 900px;
    margin-inline: auto;
}
.history-box {
    background: #17171c;
    border: 1px solid #2a2a31;
    border-radius: 10px;
    margin: 0.5rem 0;
    padding: 10px;
}
.history-box summary {
    cursor: pointer;
    color: #ffd36e;
    font-weight: 600;
}
.history-box ul {
    list-style: none;
    margin: 0;
    padding-left: 1rem;
}
