.aec-calendar-wrapper-75251c4c {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.aec-controls-75251c4c {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.aec-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
    color: #444;
}
.aec-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}
.aec-day {
    padding: 15px 5px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    background: #fff;
}
.aec-day:hover:not(.empty) {
    background: #f8f9fa;
    border-color: #ddd;
}
.aec-day.empty {
    border: none;
    background: transparent;
    cursor: default;
}
/* Today highlight */
.aec-day.is-today {
    font-weight: bold;
    color: #000;
    border: 2px solid #000;
}
/* Selected day highlight */
.aec-day.is-selected {
    background: #000;
    color: #fff;
    border-color: #000;
}
/* Sleek dot for events */
.evt-dot {
    width: 6px;
    height: 6px;
    background: #ff3b30;
    border-radius: 50%;
    margin: 4px auto 0;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}
.aec-day.is-selected .evt-dot {
    background: #fff;
}
.aec-events-list-75251c4c {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.aec-event-card-75251c4c {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s;
}
.aec-event-card-75251c4c:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.aec-event-card-75251c4c img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}
.aec-event-card-75251c4c h2 {
    font-size: 1.2rem;
    margin: 0;
}
.aec-event-date-75251c4c {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 5px;
}
.aec-modal-75251c4c {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.aec-modal-content-75251c4c {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.aec-modal-close-75251c4c {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.aec-btn-75251c4c {
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
    transition: all 0.3s ease;
}