/* NJ Dental Appointment – Frontend UI */

#njda-booking-form {
    max-width: 520px;
    margin: 30px auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#njda-booking-form p {
    margin-bottom: 16px;
}

#njda-booking-form label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    color: #111827;
}

#njda-booking-form input,
#njda-booking-form select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    outline: none;
}

#njda-booking-form input:focus,
#njda-booking-form select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37,99,235,0.15);
}

#njda-booking-form button {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: #2563eb;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

#njda-booking-form button:hover {
    background: #1e40af;
}

/* Status messages */
.njda-success {
    background: #d1fae5;
    color: #065f46;
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
    font-weight: 600;
}

.njda-warning {
    background: #ffedd5;
    color: #92400e;
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
    font-weight: 600;
}

/* Mobile optimization */
@media (max-width: 480px) {
    #njda-booking-form {
        margin: 15px;
        padding: 20px;
    }
}

/* Multi-step logic */
.njda-step {
    display: none;
}

.njda-step.active {
    display: block;
}

#njda-booking-form h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #111827;
}

#njda-back-btn {
    background: #6b7280;
    margin-right: 10px;
}

#njda-back-btn:hover {
    background: #4b5563;
}

@media (max-width: 480px) {
    #njda-back-btn,
    #njda-next-btn,
    #njda-booking-form button {
        width: 100%;
        margin-bottom: 10px;
    }
}
