body {
    font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    max-width: 700px;
    margin: 40px auto;
    padding: 0 15px;
}

h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    font-weight: 700;
    font-size: 3.0rem;
}

#dateDisplay {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.6rem;
    color: #ffffff;
}

.day-block {
    background: #1f1f1f;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.7);
    padding: 25px 30px;
    margin-bottom: 40px;
    border-radius: 10px;
}


table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 0 3px #000000;
}

thead {
    background-color: #6200ee;
}

thead th {
    padding: 14px 20px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    user-select: none;
}

tbody tr {
    background-color: #2c2c2c;
    border-bottom: 1px solid #444;
    transition: background-color 0.25s ease;
}

tbody tr:hover {
    background-color: #3d2a80;
}

tbody td {
    padding: 12px 20px;
    color: #ddd;
    text-align: left;
    user-select: text;
}