.appointment-booking-form,
.appointment-edit-form {
    max-width: 600px;
    margin: 0 auto;
}

.appointment-booking-form label,
.appointment-edit-form label {
    display: block;
    margin-bottom: 5px;
    color: #3B3660;
}

.appointment-booking-form input,
.appointment-edit-form input,
.appointment-booking-form select,
.appointment-edit-form select,
.appointment-booking-form textarea,
.appointment-edit-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.appointment-booking-form .form-row,
.appointment-edit-form .form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.appointment-booking-form .form-group {
    flex: 1;
    margin-right: 15px;
    margin-bottom: 15px;
}

.appointment-booking-form .form-group-full {
    flex: 0 0 100%;
    margin-bottom: 15px;
}

.appointment-booking-form .services-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Reduced gap */
}

.appointment-booking-form .service-checkbox {
    display: flex;
    align-items: center;
}

.appointment-booking-form form > input[type=submit] {
    color: red;
}
