.zenoti-booking-container {
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    box-sizing: border-box;
    margin: 0 auto;
}

.zenoti-booking-heading {
    text-align: left;
    margin: 0 0 18px 0;
    font-size: 26px;
    line-height: 1.1;
    color: #333;
    font-weight: 700;
}

.zenoti-booking-subheading {
    font-size: 21px;
    font-weight: bold;
    color: #333;
    margin: 0px 0px 10px 0px;
}

.zenoti-booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.zenoti-floating-label {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.zenoti-floating-label input,
.zenoti-floating-label select {
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    background: #fff;
    box-sizing: border-box;
}

.zenoti-animated-label {
    position: absolute;
    left: 12px;
    top: 8px;
    font-size: 16px;
    color: #43454b;
    background: #fff;
    padding: 0 6px;
    transition: all .22s ease;
    pointer-events: none;
    transform-origin: left top;
    white-space: nowrap;
}

.zenoti-floating-label input:focus,
.zenoti-floating-label select:focus {
    border-color: #FFA400;
    box-shadow: 0 0 0 3px rgba(255,164,0,0.07);
}

.zenoti-floating-label input:focus + .zenoti-animated-label,
.zenoti-floating-label input:not(:placeholder-shown) + .zenoti-animated-label,
.zenoti-floating-label select:focus + .zenoti-animated-label,
.zenoti-floating-label select:valid + .zenoti-animated-label,
.zenoti-floating-label.has-value .zenoti-animated-label {
    top: -8px;
    font-size: 12px;
    color: #FFA400;
    font-weight: 600;
}

.zenoti-submit-button {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
    background: #FFA400;
    color: #fff;
    font-weight: 600;
    transition: background .18s ease;
    position: relative;
}

.zenoti-submit-button:hover:not(:disabled) {
    background: #e69200;
}

.zenoti-submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.zenoti-checkbox-wrapper {
    margin-top: 12px;
    display: flex;
    align-items: flex-start;
}

.zenoti-checkbox-label {
    display: flex;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
    color: #333;
    cursor: pointer;
    align-items: flex-start;
}

.zenoti-checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    accent-color: #FFA400;
    cursor: pointer;
}

.zenoti-checkbox-text {
    flex: 1;
}

/* Spinner CSS */
.zenoti-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: zenoti-spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes zenoti-spin {
    to {
        transform: rotate(360deg);
    }
}