#miniCalendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    text-align: center;
}

.calendar-day {
    padding: 3px;
    border-radius: 3px;
    font-size: 0.8rem;
}

.calendar-day.header {
    font-weight: bold;
    background-color: #f0f0f0;
}

.calendar-day.current {
    background-color: #007bff;
    color: white;
    font-weight: bold;
}

.calendar-day.other-month {
    color: #ccc;
}

#seasonIcon {
    font-size: 4rem;
    margin-bottom: 1rem;
}