.advent-calendar {
    max-width: 800px;
    margin: 0 auto 50px;
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 2px solid #ddd;
}

.nav-link {
    text-decoration: none;
    color: #039fd6;
    padding: 8px 16px;
    border: 1px solid #039fd6;
    border-radius: 4px;
    transition: all 0.3s;
}

.nav-link:hover {
    background-color: #039fd6;
    color: white;
}

.calendar-title {
    margin: 0;
    color: #383731;
    font-weight: 400;
}

.calendar-grid {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.day-header {
    padding: 15px 10px;
    text-align: center;
    font-weight: bold;
    color: #495057;
    border-right: 1px solid #ddd;
}

.day-header:last-child {
    border-right: none;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-day {
    padding: 8px;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    position: relative;
    background-color: white;
}

.calendar-day:nth-child(7n) {
    border-right: none;
}

.calendar-day.empty {
    background-color: #f8f9fa;
}

.calendar-day.today {
    background-color: #f74e17;
    color: #fff;
}

.calendar-day.has-events {
    background-color: #b8edff;
    cursor: pointer;
}

.calendar-day.has-events:hover {
    background-color: #f74e17;
    color: #fff;
}

.day-number {
    margin-bottom: 5px;
}

.events-indicator {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}

/*.event-dot {
    width: 8px;
    height: 8px;
    background-color: #039fd6;
    border-radius: 50%;
    cursor: pointer;
}*/

.event-more {
    font-size: 10px;
    color: #666;
    margin-left: 2px;
}

/* Модальное окно */
.events-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
}

.close-modal:hover {
    color: #000;
}

#modal-date-title {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #039fd6;
    padding-bottom: 10px;
}

.event-item {
    padding: 10px;
    margin: 5px 0;
    background-color: #f8f9fa;
    border-left: 3px solid #039fd6;
    border-radius: 4px;
}

.event-item a {
    text-decoration: none;
    color: #0073aa;
    font-weight: bold;
}

.event-item a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
      .calendar-day {
        min-height: 30px;
        padding: 4px;
    }

    .day-number {
        font-size: 12px;
    }
}