.calendar-latest { text-align: center; font-family: 'Noto Sans KR', sans-serif; margin-bottom: 30px; }
.calendar-title { font-size: 1.4em; margin-bottom: 10px; }
.calendar-nav { text-align: center; font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.calendar-nav a { padding: 4px 8px; text-decoration: none; color: #333; }
.calendar-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.calendar-table th, .calendar-table td {
    vertical-align: middle;
    height: 30px;
    position: relative;
    text-align: center;
}

.calendar-table thead {text-align: center;}

.calendar-table th { background: #f8f8f8; }


.calendar-table .sun { color: red; }
.calendar-table .sat { color: #088dcd }
.calendar-table .today { background: #fff8dc; border: 2px solid #ffcc00; }
.calendar-table .cal-day {
    cursor: pointer;
    margin-top: 0px;
}
.calendar-table .has-event .cal-day {
    position: relative;
    color: inherit;
}

.calendar-table .has-event .cal-day::after {
    content: '';
    position: absolute;
    left: 10%;
    bottom: -5px;
    width: 80%;
    border-bottom: 3px solid #0077cc;
}
.empty { background: #f9f9f9; }

.event-display {
    background: #f7f7f7;
    border-top: 2px solid #0077cc;
    padding: 15px;
    text-align: left;
    width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.event-display h3 {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #0077cc;
}
.event-list { list-style: none; padding: 0; margin: 0; }
.event-list li { margin-bottom: 0px !important; }
.event-list a {
    color: #333;
    text-decoration: none;
}
.event-list a:hover {
    text-decoration: underline;
    color: #0077cc;
}
