.event-calendar-708695bc {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    position: relative;
}
.ec-header-708695bc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.ec-title-708695bc {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
}
.ec-nav-708695bc button {
    background: #f5f5f7;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    color: #1a1a1a;
    transition: background 0.2s;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ec-nav-708695bc button:hover {
    background: #e8e8ed;
}
.ec-grid-708695bc {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}
.ec-weekday-708695bc {
    font-weight: 600;
    padding: 8px 0;
    color: #8e8e93;
    font-size: 0.9rem;
    text-transform: uppercase;
}
.ec-day-708695bc {
    min-height: 90px;
    border: 1px solid #f2f2f7;
    border-radius: 8px;
    padding: 8px;
    position: relative;
    background: #fbfbfd;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.ec-day-empty-708695bc {
    background: transparent;
    border: none;
}
.ec-day-num-708695bc {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
    margin-bottom: 6px;
}
.ec-day-events-708695bc {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ec-event-item-708695bc {
    font-size: 0.75rem;
    padding: 3px 6px;
    border-radius: 4px;
    color: #fff;
    background-color: #3498db;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 500;
    line-height: 1.2;
    transition: opacity 0.2s;
}
.ec-event-item-708695bc:hover {
    opacity: 0.9;
}

/* Modal styles */
.ec-modal-overlay-708695bc {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.ec-modal-overlay-708695bc.active {
    opacity: 1;
    pointer-events: auto;
}
.ec-modal-content-708695bc {
    background: #fff;
    width: 90%;
    max-width: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(20px);
    transition: transform 0.2s ease;
    position: relative;
}
.ec-modal-overlay-708695bc.active .ec-modal-content-708695bc {
    transform: translateY(0);
}
.ec-modal-close-708695bc {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.8);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1a1a1a;
    z-index: 10;
}
.ec-modal-img-708695bc {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #eaeaea;
}
.ec-modal-body-708695bc {
    padding: 24px;
}
.ec-modal-tag-708695bc {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    background: #eaeaea;
    color: #333;
    margin-bottom: 12px;
}
.ec-modal-title-708695bc {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #1a1a1a;
}
.ec-modal-meta-708695bc {
    font-size: 0.85rem;
    color: #8e8e93;
    margin-bottom: 16px;
}
.ec-modal-desc-708695bc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #3a3a3c;
    margin-bottom: 24px;
}
.ec-modal-btn-708695bc {
    display: inline-block;
    background: #007aff;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s;
}
.ec-modal-btn-708695bc:hover {
    background: #0056b3;
}
