.angie-calendar-wrapper-92499b48 {
    border: 1px solid #e0e0e0;
    background: #fff;
    font-family: var(--e-global-typography-primary-font-family), "Outfit", sans-serif;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.angie-cal-controls-92499b48 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.angie-cal-nav-group {
    display: flex;
    gap: 10px;
}

.angie-cal-controls-92499b48 h3 {
    margin: 0;
    color: var(--e-global-color-text);
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
}

.angie-cal-btn {
    background: var(--e-global-color-secondary);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.2s ease;
}

.angie-cal-btn:hover {
    background: var(--e-global-color-primary);
    transform: translateY(-1px);
}

.angie-cal-btn.reload-cal {
    background: var(--e-global-color-4937b86);
    color: var(--e-global-color-text);
}
.angie-cal-btn.reload-cal:hover {
    background: var(--e-global-color-8d5435c);
}

.angie-cal-header-92499b48 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: var(--e-global-color-4937b86);
    color: var(--e-global-color-text);
    border-bottom: 1px solid #e0e0e0;
}

.angie-cal-day-name {
    padding: 12px 10px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    border-right: 1px solid #e0e0e0;
}
.angie-cal-day-name:last-child {
    border-right: none;
}

.angie-cal-grid-92499b48 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.angie-cal-cell {
    min-height: 120px;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px;
    display: flex;
    flex-direction: column;
    transition: background-color 0.2s ease;
}

.angie-cal-cell:nth-child(7n) {
    border-right: none;
}

.angie-cal-cell.empty {
    background-color: #fafafa;
}

.angie-cal-cell.is-today {
    background-color: rgba(53, 162, 98, 0.05); /* Primary color with low opacity */
}

.angie-cal-date {
    font-size: 14px;
    color: var(--e-global-color-text);
    margin-bottom: 8px;
    align-self: flex-end;
    font-weight: 600;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.angie-cal-cell.is-today .angie-cal-date {
    background-color: var(--e-global-color-primary);
    color: #fff;
    box-shadow: 0 2px 6px rgba(53, 162, 98, 0.3);
}

.angie-cal-events {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.angie-cal-event-block-92499b48 {
    background-color: #fff;
    border-left: 3px solid var(--e-global-color-secondary);
    padding: 8px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.angie-ev-img-92499b48 {
    width: 100%;
    height: 80px;
    border-radius: 2px;
    margin-bottom: 4px;
    object-fit: cover;
}

.angie-ev-title-92499b48 {
    font-size: 14px;
    font-weight: 600;
    color: var(--e-global-color-text);
    line-height: 1.3;
}

.angie-ev-loc-92499b48 {
    font-size: 11px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.angie-ev-desc-92499b48 {
    font-size: 12px;
    color: #555;
    line-height: 1.4;
}