.annual-calendar-c132a1aa {
    position: relative;
    font-family: inherit;
}

.ac-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.ac-month {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.ac-month-title {
    text-align: center;
    margin: 0 0 10px 0;
    font-size: 1.1em;
    font-weight: 600;
}

.ac-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: bold;
    font-size: 0.85em;
    margin-bottom: 5px;
    color: #666;
}

.ac-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 2px;
}

.ac-day {
    padding: 5px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #333;
}

.ac-empty {
    background: transparent;
}

.ac-has-event {
    background-color: #0073e6;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s, background-color 0.2s;
}

.ac-has-event:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

/* Modal */
.ac-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.ac-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    position: relative;
}

.ac-modal-close {
    position: absolute;
    top: 15px; right: 15px;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    color: #333;
}

.ac-modal-title {
    margin-top: 0;
    margin-bottom: 5px;
}

.ac-modal-date {
    color: #777;
    font-size: 0.9em;
    margin-bottom: 15px;
}