.custom-amelia-booking-wrapper {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
}

.booking-form-container {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.booking-form-container h2 {
    margin-top: 0;
    color: #333;
    text-align: center;
}

.booking-form-container h3 {
    color: #555;
    margin-bottom: 20px;
}

.form-step {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4CAF50;
}

.btn-next,
.btn-back,
.btn-submit {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-right: 10px;
}

.btn-next,
.btn-submit {
    background: #4CAF50;
    color: white;
}

.btn-next:hover,
.btn-submit:hover {
    background: #45a049;
}

.btn-back {
    background: #f1f1f1;
    color: #333;
}

.btn-back:hover {
    background: #e0e0e0;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

.booking-loader,
.booking-success,
.booking-error {
    text-align: center;
    padding: 40px 20px;
}

.booking-success {
    color: #4CAF50;
}

.booking-error {
    color: #f44336;
}