#scheduleAreaLarge {
    display: flex;
    justify-content: center;
    align-items: center;
}

#scheduleAreaWrap {
    max-width: 120rem;
    margin-left: auto;
    margin-right: auto;
}


.month {
    border: 0.1rem solid #ccc;
}
.monthLabel {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 4rem;
}
#weekday_row {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 1rem;
    text-align: center;
    min-height: 10rem;
    font-family: Inter, sans-serif;
}
.calendar_day {
    font-size: 2rem;
    font-weight: 60rem;
}

.month_days {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 1rem;
}

.day {
    display: flex;
    cursor: pointer;
    font-family: Inter, sans-serif;
    border: 0.1rem solid #ccc;
    padding: 1rem;
    min-height: 10rem;
    text-align: center;
    justify-content: center;
}

.info-panel {
    cursor: auto;
    position: fixed;
    background: #ffffff;
    font-size: larger;
    border: 1px solid #9146ff; /* Twitch-Lila */
    width: 30rem;
    height: fit-content;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    font-family: Inter, sans-serif;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}