/* ==============================
   Adamson Scheduling – Base
   ============================== */

.adamson-schedule {
    max-width: 520px;
    margin: 0 auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    font-family: inherit;
}

/* Heading */
.adamson-schedule h2 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    text-align: center;
}

/* Labels */
.adamson-schedule label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #222;
}

/* Inputs */
.adamson-schedule input[type="date"],
.adamson-schedule input[type="text"],
.adamson-schedule input[type="email"],
.adamson-schedule input[type="tel"] {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    background: #fff;
    color: #111;
}

/* Focus */
.adamson-schedule input:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

/* ==============================
   Time Slots
   ============================== */

#time_slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

/* Slot Button */
#time_slots .slot {
    padding: 12px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

/* Hover */
#time_slots .slot:hover {
    border-color: #F97316;
    background: #fff7ed;
}

/* Selected Slot */
#time_slots .slot.selected {
    background: #F97316;
    border-color: #F97316;
    color: #ffffff;
}

/* ==============================
   Confirm Button
   ============================== */

#adamon-confirm-booking,
#confirm_booking {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    background-color: #F97316;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

/* Hover */
#confirm_booking:hover {
    background-color: #ea580c;
    transform: translateY(-1px);
}

/* ==============================
   Status Messages
   ============================== */

.adamson-schedule .status {
    margin-top: 16px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
}

.adamson-schedule .status .success {
    background: #d9f5fa !important;
    color: #065f46;
    border-left: 4px solid #03d3f8 !important;
}

.adamson-schedule .status .error {
    background: #fef2f2 !important;
    color: #7f1d1d !important;
    border-left: 4px solid #dc2626 !important;
}

.title_brand {
    color: #80EDFF !important;
}