/* -----------------------------------
   🔄 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: 500px;
    margin: auto;
    padding: 20px;
    background: transparent;
    text-align: center;
}

/* -----------------------------------
   📅 FORM: Booking Form Styling
----------------------------------- */
#appointment-form {
    display: none; /* Hidden until button is clicked */
    text-align: left;
}

/* -----------------------------------
   🏷 LABELS: Field Labels
----------------------------------- */
label {
    display: block;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #000;
}

/* -----------------------------------
   🧾 INPUT FIELDS: Text, Email, Tel, Date, etc.
----------------------------------- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    background-color: #f5f5f5;
    color: #000;
    box-sizing: border-box;
    margin-bottom: 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

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

/* -----------------------------------
   ⬇ SELECT (Dropdown): Matches Input Fields
----------------------------------- */
select {
    background-color: #f5f5f5;
    color: #000;
    border-radius: 6px;
    padding: 10px;
    font-size: 1rem;
    cursor: pointer;
}

/* Fallback/override class (if Nicepage conflicts) */
.mb-slot-dropdown {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 10 !important;
    background-color: #f5f5f5 !important;
    color: #000 !important;
    border: none !important;
    padding: 10px !important;
    width: 100% !important;
    font-size: 1rem !important;
    border-radius: 6px !important;
}

/* -----------------------------------
   ✉️ SUBMIT BUTTON
----------------------------------- */
button[type="submit"] {
    background-color: #98000f;
    color: #fff;
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.2s ease-in-out;
}

button[type="submit"]:hover {
    background-color: #dca94e;
}

/* -----------------------------------
   🚀 START BUTTON ("Book an Appointment")
----------------------------------- */
#signup-button {
    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 {
    padding: 12px 16px;
    margin-bottom: 16px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
}

.form-message.success {
    background-color: #a7a9ac;
    color: #3c763d;
    border: 1px solid #c1e2b3;
}

.form-message.error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}
