/* Mobile-first page shell and shared devotee UI patterns */

.mobile-page,
.temple-main.has-bottom-nav .content {
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 992px) {
    .mobile-page,
    .temple-main.has-bottom-nav .content {
        padding-bottom: 2rem;
    }
}

/* ── Global responsive shell ── */
.page,
.mobile-shell,
.public-shell {
    overflow-x: clip;
    max-width: 100%;
}

@media (max-width: 767.98px) {
    .temple-main .content {
        padding-left: max(0.5rem, env(safe-area-inset-left));
        padding-right: max(0.5rem, env(safe-area-inset-right));
    }

    .mobile-page .card,
    .admin-page .card {
        border-radius: 14px;
    }

    .mobile-page .card-body,
    .admin-page .card-body {
        padding: 0.85rem 1rem;
    }

    .mobile-page h3,
    .admin-page .page-title {
        font-size: 1.15rem;
    }

    .mobile-page .row > [class*="col-"],
    .admin-page .row > [class*="col-"] {
        margin-bottom: 0.75rem;
    }

    .table-responsive {
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 575.98px) {
    .btn-group,
    .d-flex.gap-2 {
        flex-wrap: wrap;
    }

    .payment-summary-actions .btn,
    .payment-upi-cancel-btn--inline {
        width: 100%;
    }
}

/* Devotee booking tables → cards */
.devotee-booking-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.devotee-booking-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

.devotee-booking-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    word-break: break-word;
}

.devotee-booking-card-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
}

.devotee-booking-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.devotee-booking-meta-item--wide {
    grid-column: 1 / -1;
}

.devotee-booking-meta-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #9ca3af;
}

.devotee-booking-meta-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    word-break: break-word;
}

/* Form actions — stack on narrow screens */
.mobile-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

@media (max-width: 575.98px) {
    .mobile-form-actions {
        flex-direction: column-reverse;
    }

    .mobile-form-actions .btn {
        width: 100%;
        min-height: 48px;
        font-weight: 600;
    }
}

/* Full-row tappable settings */
.mobile-settings-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 48px;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
}

.mobile-settings-row:last-of-type {
    border-bottom: none;
}

.mobile-settings-row .form-check-input {
    width: 1.15rem;
    height: 1.15rem;
    margin-top: 0;
    flex-shrink: 0;
}

.mobile-settings-row .form-check-label {
    flex: 1;
    margin: 0;
    font-weight: 500;
    line-height: 1.35;
}

/* Touch-friendly primary actions */
.mobile-btn-touch {
    min-height: 48px;
    font-weight: 600;
}

/* Receipt screen padding */
@media (max-width: 575.98px) {
    .receipt-container {
        padding: 1rem !important;
    }

    .receipt-actions .btn {
        min-height: 48px;
        font-weight: 600;
    }
}


/* Admin configuration — see admin-config-page.css */

.admin-save-toast {
    position: sticky;
    top: 0.35rem;
    z-index: 120;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.65rem;
    margin-bottom: 1rem;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.admin-save-toast__body {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.45;
}

.admin-save-toast__body .bi {
    flex-shrink: 0;
    margin-top: 0.1rem;
    font-size: 1.05rem;
}

.admin-save-toast .btn-close {
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* ── Payment page (UPI checkout) ── */
.payment-page-title {
    font-family: var(--font-display, Georgia, serif);
    color: #0f3d2a;
}

.payment-checkout-shell {
    max-width: 440px;
    margin: 0 auto;
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

.payment-upi-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(45, 138, 95, 0.14);
    box-shadow:
        0 20px 50px rgba(15, 61, 42, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
}

.payment-upi-card__accent {
    height: 4px;
    background: linear-gradient(90deg, #145a3d 0%, #c88719 35%, #f5c518 50%, #c88719 65%, #145a3d 100%);
}

.payment-upi-card__body {
    padding: 1.25rem 1.25rem 1rem;
}

.payment-upi-card__footer {
    padding: 0.85rem 1.25rem 1.15rem;
    background: linear-gradient(180deg, #f8fdf9 0%, #f1f8f4 100%);
    border-top: 1px solid rgba(45, 138, 95, 0.1);
    text-align: center;
}

.payment-upi-card__head {
    margin-bottom: 1rem;
}

.payment-upi-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.28rem 0.65rem;
    margin-bottom: 0.55rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #145a3d;
    background: linear-gradient(135deg, #fef9c3 0%, #fde68a 100%);
    border: 1px solid rgba(200, 135, 25, 0.3);
    border-radius: 999px;
}

.payment-upi-badge--inline {
    margin-bottom: 0;
}

.payment-upi-card__title {
    margin: 0;
    font-family: var(--font-display, Georgia, serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f3d2a;
    line-height: 1.25;
}

.payment-upi-amount-box {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.85rem 1rem;
    margin-bottom: 0.85rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #fefce8 100%);
    border: 1px solid rgba(45, 138, 95, 0.18);
}

.payment-upi-amount-label,
.payment-summary-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #5c7a6a;
}

.payment-upi-amount {
    font-family: var(--font-display, Georgia, serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: #145a3d;
    line-height: 1.1;
}

.payment-upi-order {
    margin: 0 0 1rem;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    background: #f8faf9;
    border: 1px solid #e8f5e9;
}

.payment-upi-order__label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8fa99a;
    margin-bottom: 0.2rem;
}

.payment-upi-order__id {
    display: block;
    font-size: 0.68rem;
    word-break: break-all;
    color: #3d5a4a;
    background: transparent;
}

.payment-upi-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.65rem 0.75rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    font-size: 0.82rem;
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.payment-upi-loading {
    text-align: center;
    padding: 1.5rem 0;
    color: #5c7a6a;
    font-size: 0.88rem;
}

.payment-upi-hint {
    margin: 0.5rem 0 0;
    font-size: 0.8rem;
    color: #7a8f82;
    line-height: 1.45;
}

.payment-upi-order--compact {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    padding: 0.4rem 0.6rem;
}

.payment-upi-order--compact .payment-upi-order__label {
    margin-bottom: 0;
    flex-shrink: 0;
}

.payment-upi-order--compact .payment-upi-order__id {
    font-size: 0.62rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.payment-upi-methods {
    margin-top: 0.25rem;
}

.payment-upi-checkout-root {
    margin: 0;
}

.payment-upi-checkout-root--loading {
    min-height: 0;
}

.payment-upi-waiting {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 1rem;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid rgba(45, 138, 95, 0.22);
    color: #1e4d38;
    font-size: 0.82rem;
    line-height: 1.45;
}

.payment-upi-waiting strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.88rem;
    color: #145a3d;
}

.payment-upi-waiting p {
    margin: 0;
    color: #5c7a6a;
}

.payment-upi-sandbox-hint {
    margin: 0 0 0.65rem;
    font-size: 0.78rem;
    line-height: 1.45;
    color: #5c7a6a;
}

.payment-upi-sandbox-banner {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin: 0 0 0.85rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.78rem;
    line-height: 1.45;
    color: #1e4d38;
    background: #ecfdf5;
    border: 1px solid rgba(45, 138, 95, 0.2);
    border-radius: 12px;
}

.payment-upi-sandbox-banner strong {
    font-weight: 700;
    color: #145a3d;
}

.payment-upi-checkout-root--ready + .payment-upi-loading {
    display: none;
}

.payment-upi-section {
    padding: 0 0 1.1rem;
    margin-bottom: 0.35rem;
}

.payment-upi-section:last-child {
    padding-bottom: 0.25rem;
    margin-bottom: 0;
}

.payment-upi-section__label {
    margin: 0 0 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #6b8f7a;
}

.payment-upi-panel {
    padding: 0;
    margin-bottom: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.payment-upi-panel--qr {
    margin-bottom: 0;
}

.payment-upi-panel--collect {
    margin-bottom: 0;
}

.payment-upi-panel__head {
    display: none;
}

.payment-upi-panel__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    border-radius: 12px;
    font-size: 1.15rem;
    color: #145a3d;
    background: linear-gradient(145deg, #ecfdf5, #d8f3dc);
    border: 1px solid rgba(45, 138, 95, 0.15);
}

.payment-upi-panel__title {
    margin: 0 0 0.2rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f3d2a;
}

.payment-upi-panel__hint {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.4;
    color: #5c7a6a;
}

.payment-upi-field-mount {
    min-height: 2.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 14px;
    background: #f8fdf9;
    border: 1px solid rgba(45, 138, 95, 0.14);
}

.payment-upi-field-mount label,
.payment-upi-checkout-root label {
    display: block;
    margin-bottom: 0.35rem !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6b8f7a !important;
}

/* Cashfree UPI collect field overrides */
.payment-upi-checkout-root input,
.payment-upi-field-mount input,
.payment-upi-field-mount iframe {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.payment-upi-checkout-root input,
.payment-upi-field-mount input {
    min-height: 3rem !important;
    padding: 0.65rem 0.9rem !important;
    font-size: 16px !important;
    border-radius: 12px !important;
    border: 1.5px solid #d8f3dc !important;
    background: #f8fdf9 !important;
    color: #0f3d2a !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.payment-upi-checkout-root input:focus,
.payment-upi-field-mount input:focus {
    outline: none !important;
    border-color: #52b788 !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.2) !important;
}

.payment-upi-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 3.1rem;
    margin: 0.85rem 0 0;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #0f3d2a;
    background: linear-gradient(180deg, #fde68a 0%, #f5c518 48%, #d4a017 100%);
    box-shadow: 0 4px 16px rgba(200, 135, 25, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.payment-upi-submit::after {
    content: '→';
    font-size: 1.1rem;
    line-height: 1;
    opacity: 0.85;
}

.payment-upi-submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(200, 135, 25, 0.42);
}

.payment-upi-submit:disabled,
.payment-upi-submit.is-loading {
    opacity: 0.75;
    cursor: wait;
}

.payment-upi-submit--start {
    margin-bottom: 0.65rem;
}

.payment-upi-checkout-root--loading {
    min-height: 0;
}

.payment-upi-apps--popular {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
}

.payment-upi-app-slot {
    min-height: 0;
}

.payment-upi-app-slot--phonepe button { border-color: rgba(95, 37, 159, 0.22) !important; }
.payment-upi-app-slot--gpay button { border-color: rgba(66, 133, 244, 0.25) !important; }
.payment-upi-app-slot--paytm button { border-color: rgba(0, 186, 242, 0.28) !important; }

.payment-upi-app-slot button,
.payment-upi-apps button,
.payment-upi-apps--popular button {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.4rem !important;
    width: 100% !important;
    min-height: 5.25rem !important;
    padding: 0.65rem 0.35rem !important;
    border-radius: 14px !important;
    font-size: 0.68rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    color: #1a3d2e !important;
    background: linear-gradient(180deg, #fff 0%, #f8fdf9 100%) !important;
    border: 1px solid rgba(45, 138, 95, 0.16) !important;
    box-shadow: 0 2px 10px rgba(15, 61, 42, 0.05) !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}

.payment-upi-app-slot button:active,
.payment-upi-apps button:active {
    transform: scale(0.98) !important;
}

.payment-upi-app-slot button img,
.payment-upi-apps button img {
    width: 2rem !important;
    height: 2rem !important;
    object-fit: contain !important;
}

.payment-upi-divider {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0.5rem 0 1rem;
    color: #9aafa3;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.payment-upi-divider::before,
.payment-upi-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d8f3dc, transparent);
}

.payment-upi-qr-mount {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff 0%, #f8fdf9 100%);
    border: 1px solid rgba(45, 138, 95, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.payment-upi-qr-mount canvas,
.payment-upi-qr-mount img {
    border-radius: 8px;
}

.payment-upi-cancel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.65rem;
    padding: 0.5rem 1.25rem;
    border: 1.5px solid rgba(45, 138, 95, 0.22);
    border-radius: 999px;
    background: #fff;
    color: #3d5a4a;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.payment-upi-cancel-btn:hover {
    background: #f8fdf9;
    border-color: rgba(45, 138, 95, 0.35);
    color: #145a3d;
}

.payment-upi-cancel-btn--inline {
    width: 100%;
}

.payment-upi-fallback-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    min-height: 2.75rem;
    margin-top: 0.5rem;
    padding: 0.6rem 1rem;
    border: 1.5px solid #145a3d;
    border-radius: 12px;
    background: #fff;
    color: #145a3d;
    font-size: 0.88rem;
    font-weight: 600;
}

.payment-upi-fallback-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

.payment-upi-fallback-btn--hosted {
    border-color: #0088a8;
    color: #0a2540;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9fc 100%);
}

.payment-upi-fallback-btn--hosted:hover:not(:disabled),
.payment-upi-fallback-btn--hosted:focus-visible {
    border-color: #007492;
    background: #e8f6fa;
}

.payment-summary-card .payment-upi-card__body {
    padding-bottom: 1.25rem;
}

.payment-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eef5f0;
}

.payment-summary-row:last-of-type {
    border-bottom: none;
    margin-bottom: 0.5rem;
}

.payment-summary-actions {
    margin-top: 1.25rem;
}

.payment-state-card {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(45, 138, 95, 0.14);
    box-shadow: 0 12px 40px rgba(15, 61, 42, 0.08);
}

.payment-success-icon {
    font-size: 2.5rem;
    color: #16a34a;
    margin-bottom: 0.5rem;
}

.payment-state-title {
    margin: 0 0 0.35rem;
    font-family: var(--font-display, Georgia, serif);
    color: #0f3d2a;
}

.payment-state-text {
    color: #5c7a6a;
    font-size: 0.9rem;
}

.payment-state-amount {
    font-family: var(--font-display, Georgia, serif);
    font-size: 1.65rem;
    font-weight: 700;
    color: #0f3d2a;
    letter-spacing: -0.02em;
}

.payment-state-hint {
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.45;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 480px) {
    .payment-upi-card__body {
        padding: 1.4rem 1.5rem 1.1rem;
    }

    .payment-upi-card__title {
        font-size: 1.45rem;
    }

    .payment-upi-amount {
        font-size: 1.9rem;
    }
}

/* Pujari bookings — puja + offerings */
.pujari-bookings-page {
    max-width: 960px;
}

.pujari-bookings-head {
    margin-bottom: 1.25rem;
}

.pujari-bookings-head-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.pujari-bookings-title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--d2kss-navy, #0a2540);
}

.pujari-bookings-date {
    margin: 0.2rem 0 0;
    color: #64748b;
    font-size: 0.92rem;
}

.pujari-bookings-refresh {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    color: var(--d2kss-navy, #0a2540);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pujari-bookings-refresh:hover {
    background: #f8fafc;
}

.pujari-bookings-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.pujari-bookings-summary-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-size: 0.82rem;
    background: #f1f5f9;
    color: #334155;
}

.pujari-bookings-summary-chip--puja {
    background: #eff6ff;
    color: #1e40af;
}

.pujari-bookings-summary-chip--offering {
    background: #ecfeff;
    color: #0e7490;
}

.pujari-bookings-summary-muted {
    opacity: 0.75;
    font-weight: 500;
}

.pujari-bookings-toolbar {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.pujari-bookings-search {
    position: relative;
    display: flex;
    align-items: center;
}

.pujari-bookings-search-icon {
    position: absolute;
    left: 0.85rem;
    color: #94a3b8;
    pointer-events: none;
}

.pujari-bookings-search-input {
    padding-left: 2.35rem;
    padding-right: 2.25rem;
    border-radius: 12px;
    border-color: #e2e8f0;
    min-height: 2.65rem;
}

.pujari-bookings-search-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.pujari-bookings-search-clear {
    position: absolute;
    right: 0.35rem;
    width: 2rem;
    height: 2rem;
    border: none;
    background: transparent;
    color: #64748b;
    border-radius: 8px;
}

.pujari-bookings-filters {
    display: flex;
    gap: 0.4rem;
}

.pujari-bookings-filter {
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #475569;
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
}

.pujari-bookings-filter.is-active {
    background: var(--d2kss-navy, #0a2540);
    border-color: var(--d2kss-navy, #0a2540);
    color: #fff;
}

.pujari-bookings-section {
    margin-bottom: 1.5rem;
}

.pujari-bookings-section-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--d2kss-navy, #0a2540);
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.pujari-bookings-section-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.4rem;
    border-radius: 999px;
    background: #e2e8f0;
    font-size: 0.75rem;
    font-weight: 700;
    color: #334155;
}

.pujari-bookings-empty {
    text-align: center;
    padding: 1.5rem 1rem;
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
    background: #f8fafc;
    color: #64748b;
}

.pujari-bookings-empty i {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.65;
}

.pujari-bookings-empty p {
    margin: 0;
}

.pujari-bookings-empty--compact {
    padding: 1rem;
}

.pujari-schedule-card {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    margin-bottom: 0.85rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.pujari-schedule-card-header {
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, #1d4ed8 0%, #0a2540 100%);
    color: #fff;
}

.pujari-schedule-card-header--offering {
    background: linear-gradient(135deg, #0088a8 0%, #0a2540 100%);
}

.pujari-schedule-card-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.65rem;
}

.pujari-schedule-card-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}

.pujari-schedule-card-badge {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    white-space: nowrap;
}

.pujari-schedule-card-badge--offering {
    background: rgba(255, 255, 255, 0.18);
}

.pujari-schedule-card-meta {
    margin: 0.45rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    font-size: 0.82rem;
    opacity: 0.92;
}

.pujari-schedule-card-meta i {
    margin-right: 0.15rem;
}

.pujari-schedule-kind {
    font-weight: 600;
    padding: 0.1rem 0.45rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
}

.pujari-schedule-kind.is-booking {
    background: rgba(251, 191, 36, 0.35);
}

.pujari-schedule-card-body {
    padding: 0.85rem 1rem 1rem;
}

.pujari-offering-card-header {
    background: linear-gradient(135deg, #0088a8 0%, #0a2540 100%);
}

.pujari-bookings-page .card-header small {
    opacity: 0.92;
}

@media (min-width: 768px) {
    .pujari-bookings-toolbar {
        flex-direction: row;
        align-items: center;
    }

    .pujari-bookings-search {
        flex: 1;
    }

    .pujari-bookings-filters {
        flex-shrink: 0;
    }
}

