.reservation-wizard {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.progress-indicator {
    margin-bottom: 30px;
}

.progress {
    height: 6px;
    background-color: #e9ecef;
    border-radius: 3px;
}

.progress-bar {
    transition: width 0.3s ease;
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    text-align: center;
    min-width: 80px;
    margin: 10px 5px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.step-item.active {
    opacity: 1;
}

.step-item .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #666;
    font-weight: bold;
    margin-bottom: 8px;
}

.step-item.active .step-number {
    background-color: #007bff;
    color: #fff;
}

.step-item .step-label {
    display: block;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

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

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

.form-step h3 {
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.event-card {
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.event-card:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.event-card.selected {
    background-color: #e7f3ff;
    border-color: #0056b3 !important;
    border-width: 2px;
}

.event-card h5 {
    color: #333;
    margin-bottom: 10px;
}

.event-card .text-muted {
    font-size: 13px;
}

.event-card p {
    margin-bottom: 8px;
}

.cursor-pointer {
    cursor: pointer;
}

.machine-selection {
    margin-bottom: 20px;
}

.machine-info {
    border-left: 4px solid #17a2b8;
    padding: 15px;
    background-color: #f8f9fa;
}

.machine-info p {
    margin-bottom: 10px;
}

.options-selection {
    margin-top: 25px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.form-check {
    padding: 12px 0;
}

.form-check-label {
    margin-left: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.option-price {
    color: #28a745;
    font-weight: 500;
}

.pricing-summary {
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
}

.pricing-summary .row {
    margin: 0;
}

.pricing-summary p {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.form-control,
.form-select {
    border-color: #dee2e6;
    border-radius: 6px;
    padding: 10px 12px;
}

.form-control:focus,
.form-select:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.signature-section {
    margin-bottom: 20px;
}

#signatureCanvas {
    border: 2px solid #dee2e6;
    border-radius: 6px;
    display: block;
    margin: 15px 0;
    background-color: #fff;
    touch-action: none;
}

.payment-options {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
}

.form-check {
    margin-bottom: 15px;
}

.form-check-label {
    cursor: pointer;
    font-weight: 500;
}

.badge {
    margin-left: 8px;
}

.form-navigation {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

.btn {
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #545b62;
    border-color: #545b62;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #218838;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

.alert {
    border-radius: 6px;
    border: none;
    padding: 15px 20px;
}

.alert-info {
    background-color: #e7f3ff;
    color: #004085;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-success h4 {
    margin-bottom: 10px;
}

.alert-success p {
    margin-bottom: 5px;
}

.border-primary {
    border-color: #0056b3 !important;
}

.bg-light {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .reservation-wizard {
        padding: 20px;
    }

    .steps {
        flex-wrap: wrap;
    }

    .step-item {
        flex: 0 1 calc(50% - 10px);
        margin: 5px;
    }

    #signatureCanvas {
        width: 100%;
    }

    .form-navigation {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .event-card {
        padding: 15px !important;
    }

    .form-check-label {
        flex-wrap: wrap;
    }

    .pricing-summary .row {
        flex-direction: column;
    }

    .pricing-summary .col-6 {
        width: 100%;
    }
}
