* {
    box-sizing: border-box;
}

.stepper-wrapper {
    width: 100%;
    padding: 20px;
}

.stepper-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.stepper-progress::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 33.333%;
}

.step-circle {
    width: 30px;
    height: 30px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    transition: all 0.3s ease;
}

.step.active .step-circle {
    background: #4caf50;
    border-color: #4caf50;
    color: white;
}

.step.completed .step-circle {
    background: #4caf50;
    border-color: #4caf50;
    color: white;
}

.step-title {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.step.active .step-title {
    color: #4caf50;
    font-weight: bold;
}

.step-content {
    display: none;
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.litepicker .day-item small {
    pointer-events: none;
}

.step-content.active {
    display: block;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 15px;
}

.selected-range {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    display: none;
}

.booking-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.selected-range {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    display: none;
    font-size: 14px;
    line-height: 1.5;
}

.btn-clear {
    padding: 8px 15px;
    background: #f44336;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    width: 100%;
}

.litepicker {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    font-size: 14px;
}

.litepicker .container__months {
    box-shadow: none !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.litepicker .container__months .month-item {
    width: calc(50% - 10px);
    min-width: 20px;
    margin: 5px;
}

@media (max-width: 768px) {
    .litepicker .container__months .month-item {
        width: 100%;
        margin: 5px 0;
    }

    .litepicker {
        transform: scale(0.95);
        transform-origin: top center;
    }
}

@media (max-width: 480px) {
    .calendar-wrapper {
        padding: 10px;
        margin: 10px auto;
    }

    /*.litepicker {*/
    /*    transform: scale(0.9);*/
    /*}*/
}

.litepicker .container__days .day-item {
    color: #333;
    font-weight: 400;
    border-radius: 50%;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px;
}

@media (max-width: 380px) {
    .litepicker .container__days .day-item {
        height: 27px;
        width: 27px;
        font-size: 9px;
    }
}

.litepicker .container__days .day-item:hover {
    background-color: #f0f8ff;
    color: #4caf50;
}

.litepicker .container__days .is-start-date,
.litepicker .container__days .is-end-date {
    background-color: #4caf50 !important;
    color: white !important;
}

.litepicker .container__days .is-in-range {
    background-color: #e8f5e9 !important;
    color: #4caf50 !important;
}

.litepicker .container__days .is-locked {
    background-color: #ffebee !important;
    color: #ff5252 !important;
    cursor: not-allowed !important;
    text-decoration: line-through;
}

@media (min-width: 768px) {
    .btn-clear {
        width: auto;
        margin-top: 0;
    }
}

.payment-options {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.payment-option {
    flex: 1;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #4caf50;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option input[type="radio"]:checked + label {
    color: #4caf50;
}

.payment-option input[type="radio"]:checked + label i {
    color: #4caf50;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    cursor: pointer;
}

.payment-option i {
    font-size: 24px;
    color: #666;
}

.document-upload {
    border: 2px dashed #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.help-text {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}

.email-verification {
    display: flex;
    gap: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
