.angie-calendar-wrapper-2e4d5b19 {
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin-bottom: 25px;
    max-width: 100%;
}

.angie-calendar-toggle-2e4d5b19 {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 14px 18px;
    background-color: #f1f3f5;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    transition: background-color 0.2s;
}

.angie-calendar-toggle-2e4d5b19 .btn-text {
    flex-grow: 1;
    text-align: left;
    margin-left: 12px;
}

.angie-calendar-popup-2e4d5b19 {
    margin-top: 12px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 24px;
    display: none;
    position: absolute;
    z-index: 100;
    width: 100%;
    min-width: 600px;
}

.angie-calendar-header-2e4d5b19 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.month-titles {
    display: flex;
    flex-grow: 1;
    justify-content: space-around;
}

.month-titles h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0b1c3e;
}

.nav-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #0b1c3e;
}

.nav-btn.next-btn {
    border: 1px solid #0b1c3e;
}

.nav-btn svg {
    stroke: currentColor;
}

.angie-calendar-body-2e4d5b19 {
    display: flex;
    gap: 30px;
}

.month-grid {
    flex: 1;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-bottom: 15px;
}

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

.day-cell {
    font-size: 15px;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    width: 34px;
    margin: 0 auto;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}

.day-cell:hover:not(.disabled) {
    background: #f0f2f5;
}

.day-cell.selected {
    background: #0b1c3e !important;
    color: #ffffff !important;
}

.day-cell.disabled {
    color: #d1d5db;
    text-decoration: line-through;
    text-decoration-color: #d1d5db;
    cursor: not-allowed;
    background: transparent;
}

@media (max-width: 768px) {
    .angie-calendar-body-2e4d5b19 {
        flex-direction: column;
        gap: 20px;
    }
    .angie-calendar-popup-2e4d5b19 {
        min-width: 100%;
        padding: 20px;
    }
    .month-titles {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .month-titles h3:last-child {
        display: none;
    }
    .angie-calendar-body-2e4d5b19 .month-right {
        display: none;
    }
}