/* -----------------------------------
   RESET & BASE STYLES
----------------------------------- */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: transparent;
}

/* -----------------------------------
   CONTAINER: Form Wrapper
----------------------------------- */
#appointment-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
    text-align: left;
}

/* -----------------------------------
   FORM: Booking Form Styling
----------------------------------- */
#appointment-form {
    display: block;
    text-align: left;
}

/* -----------------------------------
   LABELS: Field Labels
----------------------------------- */
#appointment-form label {
    display: block;
    margin-top: 0;
    margin-bottom: 10px;
    font-family: 'Antonio', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .9px;
    text-transform: uppercase;
    color: #171717;
}

/* -----------------------------------
   INPUT FIELDS: Text, Email, Tel, Date, etc.
----------------------------------- */
#appointment-form input[type="text"],
#appointment-form input[type="email"],
#appointment-form input[type="tel"],
#appointment-form input[type="date"],
#appointment-form select {
    width: 100%;
    padding: 16px 17px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    border: 1px solid rgba(0,0,0,.11);
    border-radius: 0;
    background: #fafafa;
    color: #111;
    box-sizing: border-box;
    margin-bottom: 28px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    transition: .2s ease;
}

#appointment-form input:focus,
#appointment-form select:focus {
    background: #fff;
    border-color: #d5a647;
    box-shadow: 0 0 0 3px rgba(213,166,71,.11);
}

#appointment-form input:disabled,
#appointment-form select:disabled {
    opacity: .55;
    cursor: not-allowed;
}

/* Ensure placeholder text is also legible */
#appointment-form input::placeholder {
    color: #666;
}

/* -----------------------------------
   SELECT (Dropdown): Matches Input Fields
----------------------------------- */
#appointment-form select {
    background: #fafafa;
    color: #111;
    border-radius: 0;
    padding: 16px 17px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    cursor: pointer;
}

/* Fallback/override class (if Nicepage conflicts) */
#appointment-form .mb-slot-dropdown {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 10 !important;
    background: #fafafa !important;
    color: #111 !important;
    border: 1px solid rgba(0,0,0,.11) !important;
    padding: 16px 17px !important;
    width: 100% !important;
    margin-bottom: 28px !important;
    box-sizing: border-box !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px !important;
    border-radius: 0 !important;
}

/* -----------------------------------
   SUBMIT BUTTON
----------------------------------- */
#appointment-form button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #98000f;
    color: #fff;
    padding: 15px 28px;
    font-family: 'Antonio', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    width: 100%;
    margin-top: 8px;
    transition: .25s ease;
}

#appointment-form button[type="submit"]:hover {
    background: #d5a647;
    color: #111;
}

/* -----------------------------------
   START BUTTON ("Book an Appointment")
----------------------------------- */
#signup-button {
    display: none;
    background: #98000f;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.2s ease-in-out;
    margin-bottom: 15px;
}

#signup-button:hover {
    background: #dca94e;
}

/* -----------------------------------
   FORM MESSAGES (Success & Error)
----------------------------------- */
.form-message {
    display: none;
    margin-top: 24px;
    padding: 15px 17px;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.form-message.success,
.form-message.error {
    display: block;
}

.form-message.success {
    background: #edf7ee;
    border: 1px solid #b8dbbd;
    color: #2f6536;
}

.form-message.error {
    background: #fff0f0;
    border: 1px solid #e3bcbc;
    color: #8c1f29;
}