ul {
    padding-left: 0 !important;
}

.calendar {
    max-width: 800px;
    margin: 30px auto;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day,
.calendar-date {
    text-align: center;
    padding: 10px 5px;
}

.calendar-day {
    font-weight: 600;
    background: #f0f0f0;
}

.calendar-date {
    min-height: 80px;
    border-radius: 6px;
    position: relative;
    background-color: #fff;
    border: 1px solid #eee;
    user-select: none;
}

.calendar-date .date-num {
    font-weight: 500;
}

.festival {
    font-size: 0.7rem;
    background: #e67e22;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-nav {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn:hover,
.btn:active,
.btn:focus-visible {
    background-color: var(--secondary) !important;
    transform: translateY(-2px) !important;
    border: none !important;
    --bs-btn-focus-box-shadow: transparent !important;
}