/* ------------------------------------------------------------
   Darshan Booking – Simple HTML UI Styles
   Clean card + larger fonts + clear labels.
------------------------------------------------------------- */

#darshan-booking-root {
    width: 100%;
    max-width: 720px;
    margin: 24px auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Card wrapper */
.darshan-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
    padding: 24px 22px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

/* Titles */
.darshan-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #111827;
}

.darshan-subtitle {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 16px;
}

/* Divider */
.darshan-divider {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 16px 0;
}

/* Labels */
.darshan-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    margin-top: 10px;
    display: block;
    color: #111827;
}

/* Inputs */
.darshan-date-input,
.darshan-input {
    width: 100%;
    padding: 10px 11px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    background: #ffffff;
    box-sizing: border-box;
}

.darshan-date-input:focus,
.darshan-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.4);
}

/* Availability text */
#darshan-slots-message {
    font-size: 13px;
    color: #4b5563;
    margin-top: 8px;
}

/* Date summary */
.darshan-date-summary {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    font-size: 14px;
    color: #1f2937;
}

.darshan-small-note {
    font-size: 12px;
    color: #4b5563;
    margin-top: 6px;
}

/* Buttons */
.darshan-actions {
    margin-top: 14px;
}

.darshan-btn-primary {
    background: #2563eb;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
    transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.08s ease;
}

.darshan-btn-primary:hover {
    background: #1d4ed8;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.45);
    transform: translateY(-1px);
}

.darshan-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

/* Messages */
.darshan-message {
    font-size: 13px;
    margin-top: 10px;
    min-height: 18px;
}

.darshan-message.error {
    color: #b91c1c;
}

.darshan-message.success {
    color: #047857;
}

/* Countdown */
.darshan-hold-timer {
    font-size: 12px;
    color: #4f46e5;
    margin-top: 8px;
}

/* Mobile */
@media (max-width: 480px) {
    .darshan-card {
        padding: 18px 16px;
    }
    .darshan-title {
        font-size: 20px;
    }
    .darshan-subtitle {
        font-size: 13px;
    }
}
