/* Calendar view overrides — date bar two-line layout + theme green */
.ews-calendar-date-bar {
    background: #1b8354;
    min-height: 52px;
}

.ews-calendar-date-picker .ews-calendar-date-day-slot {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.ews-calendar-date-picker .ews-calendar-date-day {
    flex: 0 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    width: fit-content;
    max-width: 100%;
    min-width: 0;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 6px 10px;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
    position: relative;
    cursor: pointer;
}

.ews-calendar-date-picker .ews-calendar-date-day__line1,
.ews-calendar-date-picker .ews-calendar-date-day__line2 {
    display: block;
    max-width: 100%;
}

.ews-calendar-date-picker .ews-calendar-date-day__line2 {
    font-size: 11px;
    opacity: 0.9;
}

.ews-calendar-date-picker .ews-calendar-date-day--active {
    opacity: 1;
    font-weight: 700;
    background: transparent;
}

.ews-calendar-date-picker .ews-calendar-date-day--active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    min-width: 137px;
    max-width: 137px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.8);
}

.ews-calendar-date-picker .ews-calendar-date-day--active .ews-calendar-date-day__line2 {
    opacity: 1;
}

.ews-calendar-timeline__hour {
    color: #1b8354;
}
