#middle-wizard .step {
    display: none;
}

.calendar-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    /* smaller padding */
    max-width: 650px;
    /* control width */
    margin: auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    /* reduced spacing */
}

/* Smaller nav buttons */
.nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s;
}

.nav-btn:hover {
    background: #e5e5e5;
}

.nav-btn i {
    font-size: 15px;
    /* smaller icon */
    color: #555;
}

.month-name {
    font-size: 20px;
    /* smaller month text */
    font-weight: 600;
}

/* Days row */
.days-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    /* smaller */
    color: #666;
    margin-bottom: 10px;
}

/* Date grid */
.date-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    /* smaller gap */
}

/* Smaller date box */
.date-cell {
    padding: 5px 0;
    /* reduced height */
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 13px;
    /* smaller numbers */
    color: #aaa;
    transition: all .2s ease;
}

.date-cell:hover {
    background: #f0f0f0;
}

.date-cell.active {
    background: #e9ecef;
    color: #000;
    border-color: #ddd;
}

/* Disabled style */
.date-cell.disabled {
    pointer-events: none;
    background: #f9f9f9;
    color: #ddd;
    border-color: #f1f1f1;
}

.error-field {
    border: 2px solid #dc3545 !important;
}

.error-text {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
}

.radio_select ul li.disabled label {
    opacity: 0.4;
    cursor: not-allowed;
}

.date-cell.active {
    background: #000;
    color: #fff;
}