/* Container Base */
.msc-booking-wrapper-c314a96f {
    font-family: 'Poppins', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    color: #292166;
}

/* Progress Bar */
.msc-progress-bar {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}
.msc-step-indicator {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    background: #f4f5f9;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    color: #292166;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.msc-step-indicator.active {
    background: #292166;
    color: #ffffff;
}

/* Form Box */
.msc-form-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(41, 33, 102, 0.08);
}

/* Typography */
.msc-title {
    text-align: center;
    color: #292166;
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 700;
}
.msc-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 30px;
}
.msc-label {
    display: block;
    text-align: center;
    font-weight: 600;
    margin: 20px 0 10px;
    font-size: 14px;
}

/* Inputs */
.msc-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}
.msc-grid-4 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.msc-form-container input[type="text"],
.msc-form-container input[type="email"],
.msc-form-container input[type="tel"],
.msc-form-container input[type="date"],
.msc-select {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    color: #292166;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s;
}
.msc-form-container input:focus,
.msc-select:focus {
    border-color: #292166;
}

/* Buttons */
.msc-btn-group {
    display: flex;
    gap: 15px;
}
.msc-option-btn {
    flex: 1;
    padding: 15px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    color: #292166;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}
.msc-option-btn.active, .msc-option-btn:hover {
    border-color: #292166;
    box-shadow: 0 0 0 1px #292166;
}
.msc-pay-btn {
    flex: 0 0 calc(25% - 10px);
    padding: 15px 10px;
    font-size: 12px;
}
.msc-pay-btn.active {
    border-color: #ff8210;
    box-shadow: 0 0 0 1px #ff8210;
    color: #ff8210;
}

/* Time slots */
.msc-time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}
.msc-time-btn {
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #ffffff;
    color: #292166;
    font-weight: 600;
    cursor: pointer;
    flex: 1 1 calc(25% - 10px);
    text-align: center;
}
.msc-time-btn.active {
    background: #292166;
    color: #ffffff;
    border-color: #292166;
}

/* Actions */
.msc-actions-right {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}
.msc-actions-between {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.msc-action-btn {
    padding: 15px 40px;
    border-radius: 30px;
    border: none;
    background: #292166;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: opacity 0.3s;
}
.msc-action-btn:hover { opacity: 0.9; }
.msc-secondary {
    background: #f4f5f9;
    color: #292166;
}
.msc-orange {
    background: #ff8210;
}

/* Steps */
.msc-step-content { display: none; animation: fadeIn 0.4s ease; }
.msc-step-content.active { display: block; }

/* Notice */
.msc-notice {
    margin-top: 30px;
    padding: 15px 20px;
    background: #f4f5f9;
    border-left: 4px solid #ff8210;
    border-radius: 4px;
    font-size: 13px;
    color: #6c757d;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tablet & Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .msc-form-container { 
        padding: 25px 20px; 
    }
    
    .msc-grid-2 { 
        grid-template-columns: 1fr; 
    }
    
    .msc-btn-group {
        flex-direction: column;
    }
    
    .msc-pay-btn { 
        flex: 0 0 calc(50% - 10px); 
    }
    
    .msc-time-btn {
        flex: 0 0 calc(33.333% - 10px);
    }
    
    .msc-progress-bar {
        gap: 5px;
    }
    
    .msc-step-indicator {
        font-size: 12px;
        padding: 10px 5px;
    }
    
    .msc-title {
        font-size: 22px;
    }
    
    .msc-action-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .msc-pay-btn {
        flex: 1 1 100%;
    }
    
    .msc-time-btn {
        flex: 0 0 calc(50% - 10px);
    }
    
    .msc-step-indicator {
        font-size: 11px;
    }
}
