.delivery-date-wrapper-4cac7a88 {
    margin: 20px 0;
    font-family: inherit;
    text-align: center;
}

.delivery-date-title-4cac7a88 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
    text-align: center;
}

.delivery-date-options-4cac7a88 {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.date-btn-4cac7a88 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 60px;
    max-width: 150px;
}

.date-btn-4cac7a88:hover {
    border-color: #111;
}

.date-btn-4cac7a88.active {
    background-color: #fff;
    border-color: #111;
    box-shadow: 0 0 0 1px #111;
}

.btn-main-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.btn-sub-text {
    font-size: 0.8rem;
    color: #666;
}

/* Calendar Modal Base styling */
.calendar-modal-overlay-4cac7a88 {
    display: none; 
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.calendar-modal-content-4cac7a88 {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    font-family: inherit;
}

/* Header Top */
.calendar-header-top-4cac7a88 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.calendar-title-4cac7a88 {
    font-weight: 600;
    font-size: 1rem;
    color: #111;
    letter-spacing: 0.5px;
}

.calendar-close-4cac7a88 {
    position: absolute;
    right: 20px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    color: #666;
    padding: 0;
}
.calendar-close-4cac7a88:hover { 
    color: #111;
    border-color: #111;
}

/* Inner wrapper for padding */
.calendar-inner-box-4cac7a88 {
    padding: 24px 20px 30px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    margin: 20px;
}

/* Month Navigation */
.calendar-nav-4cac7a88 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.cal-nav-btn {
    cursor: pointer;
    font-size: 1.1rem;
    color: #333;
    padding: 5px;
    user-select: none;
}

.cal-month-year-4cac7a88 {
    font-weight: 500;
    font-size: 1.1rem;
    color: #111;
}

/* Grid setup */
.calendar-grid-4cac7a88 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.cal-day-header {
    font-size: 0.8rem;
    font-weight: 500;
    color: #666;
    padding-bottom: 12px;
}

.cal-day-cell {
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: background 0.2s;
}

.cal-day-cell:not(.empty):not(.disabled):hover {
    background-color: #f5f5f5;
}

.cal-day-cell.disabled {
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
    text-decoration-color: #ccc;
    font-weight: 500;
}

.cal-day-cell.selected {
    background-color: #fff;
    color: #111;
    border: 2px solid #111;
    font-weight: 600;
}
