/* Extracted from templates/pages/reservations.html */
/* ═══ PAGE ═══ */
            .rp {
                max-width: 960px;
                margin: 0 auto;
                padding: 0 20px 80px
            }

            /* ═══ HERO HEADER ═══ */
            .rp-hero {
                padding: 120px 0 48px;
                text-align: center;
                position: relative
            }

            .rp-hero::before {
                content: '';
                position: absolute;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 600px;
                height: 600px;
                background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
                pointer-events: none
            }

            .rp-hero h1 {
                font-family: var(--font-display, 'Rajdhani', sans-serif);
                font-size: 2.4rem;
                font-weight: 700;
                color: #e2e8f0;
                margin: 0 0 8px;
                letter-spacing: -0.02em
            }

            .rp-hero h1 span {
                background: linear-gradient(135deg, #06b6d4, #3b82f6);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text
            }

            .rp-hero p {
                color: #64748b;
                font-size: 0.95rem;
                margin: 0 0 28px
            }

            /* Stats strip */
            .rp-stats {
                display: flex;
                justify-content: center;
                gap: 32px;
                flex-wrap: wrap
            }

            .rp-stat {
                text-align: center
            }

            .rp-stat-num {
                font-family: var(--font-display);
                font-size: 1.8rem;
                font-weight: 700;
                color: #e2e8f0
            }

            .rp-stat-lbl {
                font-size: 0.72rem;
                color: #64748b;
                text-transform: uppercase;
                letter-spacing: 0.06em;
                font-weight: 600
            }

            /* ═══ FILTER TABS ═══ */
            .rp-tabs {
                display: flex;
                gap: 8px;
                margin-bottom: 24px;
                flex-wrap: wrap
            }

            .rp-tab {
                padding: 8px 18px;
                border-radius: 20px;
                border: 1px solid rgba(255, 255, 255, 0.08);
                background: rgba(255, 255, 255, 0.03);
                color: #94a3b8;
                font-size: 0.8rem;
                font-weight: 600;
                cursor: pointer;
                transition: all .2s;
                font-family: inherit;
                display: flex;
                align-items: center;
                gap: 6px
            }

            .rp-tab:hover {
                border-color: rgba(6, 182, 212, 0.3);
                color: #e2e8f0
            }

            .rp-tab.active {
                background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(59, 130, 246, 0.15));
                border-color: rgba(6, 182, 212, 0.4);
                color: #06b6d4
            }

            .rp-tab .rp-tab-count {
                background: rgba(255, 255, 255, 0.1);
                padding: 2px 7px;
                border-radius: 10px;
                font-size: 0.7rem
            }

            .rp-tab.active .rp-tab-count {
                background: rgba(6, 182, 212, 0.25)
            }

            /* New booking CTA */
            .rp-new-btn {
                margin-left: auto;
                padding: 8px 20px;
                border-radius: 12px;
                border: none;
                background: linear-gradient(135deg, #1a56db, #06b6d4);
                color: #fff;
                font-size: 0.82rem;
                font-weight: 600;
                cursor: pointer;
                font-family: inherit;
                display: flex;
                align-items: center;
                gap: 6px;
                transition: all .2s
            }

            .rp-new-btn:hover {
                box-shadow: 0 4px 16px rgba(6, 182, 212, 0.35);
                transform: translateY(-1px)
            }

            /* ═══ CARDS ═══ */
            .rp-list {
                display: flex;
                flex-direction: column;
                gap: 12px
            }

            .rp-card {
                background: rgba(15, 23, 42, 0.5);
                border: 1px solid rgba(255, 255, 255, 0.06);
                border-radius: 16px;
                overflow: hidden;
                transition: all .3s
            }

            .rp-card:hover {
                border-color: rgba(255, 255, 255, 0.12);
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15)
            }

            .rp-card.status-cancelled {
                opacity: 0.55
            }

            /* Card header */
            .rp-card-head {
                display: flex;
                align-items: center;
                padding: 18px 22px;
                cursor: pointer;
                gap: 16px;
                position: relative
            }

            .rp-card-icon {
                width: 48px;
                height: 48px;
                border-radius: 14px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.2rem;
                flex-shrink: 0;
                font-weight: 700
            }

            .rp-card-icon.pending {
                background: linear-gradient(135deg, #3b82f6, #06b6d4);
                color: #fff
            }

            .rp-card-icon.confirmed {
                background: linear-gradient(135deg, #7c3aed, #a78bfa);
                color: #fff
            }

            .rp-card-icon.completed {
                background: linear-gradient(135deg, #16a34a, #4ade80);
                color: #fff
            }

            .rp-card-icon.cancelled {
                background: rgba(255, 255, 255, 0.06);
                color: #475569
            }

            .rp-card-body {
                flex: 1;
                min-width: 0
            }

            .rp-card-title {
                font-size: 0.95rem;
                font-weight: 600;
                color: #e2e8f0;
                margin: 0;
                display: flex;
                align-items: center;
                gap: 8px;
                flex-wrap: wrap
            }

            .rp-card-title .rp-id {
                color: #64748b;
                font-weight: 500;
                font-size: 0.82rem
            }

            .rp-card-meta {
                font-size: 0.8rem;
                color: #64748b;
                margin: 4px 0 0;
                display: flex;
                align-items: center;
                gap: 8px;
                flex-wrap: wrap
            }

            .rp-card-meta i {
                font-size: 0.7rem;
                color: #475569
            }

            .rp-card-right {
                display: flex;
                align-items: center;
                gap: 12px;
                flex-shrink: 0
            }

            .rp-badge {
                font-size: 0.7rem;
                font-weight: 700;
                padding: 5px 12px;
                border-radius: 20px;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                white-space: nowrap
            }

            .rp-badge.pending {
                background: rgba(59, 130, 246, 0.15);
                color: #60a5fa;
                border: 1px solid rgba(59, 130, 246, 0.2)
            }

            .rp-badge.confirmed {
                background: rgba(124, 58, 237, 0.15);
                color: #a78bfa;
                border: 1px solid rgba(124, 58, 237, 0.2)
            }

            .rp-badge.completed {
                background: rgba(74, 222, 128, 0.15);
                color: #4ade80;
                border: 1px solid rgba(74, 222, 128, 0.2)
            }

            .rp-badge.cancelled {
                background: rgba(248, 113, 113, 0.1);
                color: #f87171;
                border: 1px solid rgba(248, 113, 113, 0.15)
            }

            .rp-chevron {
                color: #475569;
                font-size: 0.75rem;
                transition: transform .3s ease
            }

            .rp-card.open .rp-chevron {
                transform: rotate(180deg);
                color: #06b6d4
            }

            /* Card detail panel */
            .rp-detail {
                max-height: 0;
                overflow: hidden;
                transition: max-height .45s cubic-bezier(0.4, 0, 0.2, 1)
            }

            .rp-card.open .rp-detail {
                max-height: 600px
            }

            .rp-detail-inner {
                padding: 0 22px 22px;
                border-top: 1px solid rgba(255, 255, 255, 0.06)
            }

            /* Detail grid */
            .rp-detail-grid {
                display: grid;
                grid-template-columns:1fr 1fr;
                gap: 12px 24px;
                margin-top: 16px
            }

            .rp-detail-item {
                display: flex;
                flex-direction: column;
                gap: 2px
            }

            .rp-detail-label {
                font-size: 0.7rem;
                font-weight: 600;
                color: #475569;
                text-transform: uppercase;
                letter-spacing: 0.06em
            }

            .rp-detail-value {
                font-size: 0.88rem;
                color: #e2e8f0;
                font-weight: 500
            }

            .rp-detail-value a {
                color: #06b6d4;
                text-decoration: none
            }

            /* Actions */
            .rp-actions {
                display: flex;
                gap: 8px;
                margin-top: 18px;
                flex-wrap: wrap;
                padding-top: 16px;
                border-top: 1px solid rgba(255, 255, 255, 0.06)
            }

            .rp-btn {
                padding: 9px 18px;
                border: none;
                border-radius: 10px;
                font-size: 0.78rem;
                font-weight: 600;
                cursor: pointer;
                transition: all .2s;
                display: inline-flex;
                align-items: center;
                gap: 6px;
                font-family: inherit
            }

            .rp-btn:active {
                transform: scale(.97)
            }

            .rp-btn-primary {
                background: linear-gradient(135deg, #3b82f6, #06b6d4);
                color: #fff
            }

            .rp-btn-primary:hover {
                box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3)
            }

            .rp-btn-green {
                background: rgba(74, 222, 128, 0.12);
                color: #4ade80;
                border: 1px solid rgba(74, 222, 128, 0.2)
            }

            .rp-btn-green:hover {
                background: rgba(74, 222, 128, 0.2)
            }

            .rp-btn-purple {
                background: rgba(167, 139, 250, 0.12);
                color: #a78bfa;
                border: 1px solid rgba(167, 139, 250, 0.2)
            }

            .rp-btn-purple:hover {
                background: rgba(167, 139, 250, 0.2)
            }

            .rp-btn-red {
                background: rgba(248, 113, 113, 0.1);
                color: #f87171;
                border: 1px solid rgba(248, 113, 113, 0.15)
            }

            .rp-btn-red:hover {
                background: rgba(248, 113, 113, 0.18)
            }

            .rp-btn-outline {
                background: rgba(255, 255, 255, 0.04);
                color: #94a3b8;
                border: 1px solid rgba(255, 255, 255, 0.1)
            }

            .rp-btn-outline:hover {
                background: rgba(255, 255, 255, 0.08);
                color: #e2e8f0
            }

            /* ═══ EMPTY STATE ═══ */
            .rp-empty {
                text-align: center;
                padding: 80px 20px
            }

            .rp-empty-icon {
                font-size: 4rem;
                margin-bottom: 16px;
                display: block;
                opacity: 0.4
            }

            .rp-empty h2 {
                font-family: var(--font-display);
                font-size: 1.3rem;
                color: #e2e8f0;
                margin-bottom: 8px
            }

            .rp-empty p {
                color: #64748b;
                font-size: 0.9rem;
                margin-bottom: 24px
            }

            /* ═══ MODAL ═══ */
            .rp-modal-bg {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.6);
                backdrop-filter: blur(4px);
                z-index: 10000;
                align-items: center;
                justify-content: center;
                padding: 20px
            }

            .rp-modal-bg.open {
                display: flex
            }

            .rp-modal {
                background: linear-gradient(180deg, #0f172a, #1e293b);
                border: 1px solid rgba(255, 255, 255, 0.08);
                border-radius: 20px;
                max-width: 520px;
                width: 100%;
                max-height: 90vh;
                overflow-y: auto;
                animation: rpModalIn .3s ease
            }

            @keyframes rpModalIn {
                from {
                    opacity: 0;
                    transform: translateY(24px) scale(.97)
                }
                to {
                    opacity: 1;
                    transform: translateY(0) scale(1)
                }
            }

            .rp-modal-head {
                padding: 24px 28px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                display: flex;
                justify-content: space-between;
                align-items: center
            }

            .rp-modal-head h2 {
                font-family: var(--font-display);
                font-size: 1.15rem;
                color: #e2e8f0;
                margin: 0;
                display: flex;
                align-items: center;
                gap: 10px
            }

            .rp-modal-x {
                background: rgba(255, 255, 255, 0.06);
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 10px;
                width: 34px;
                height: 34px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #94a3b8;
                font-size: 1.2rem;
                cursor: pointer;
                transition: all .2s
            }

            .rp-modal-x:hover {
                background: rgba(248, 113, 113, 0.15);
                border-color: rgba(248, 113, 113, 0.3);
                color: #f87171
            }

            .rp-modal-body {
                padding: 24px 28px
            }

            .rp-modal-body label {
                display: block;
                font-size: 0.78rem;
                font-weight: 600;
                color: #94a3b8;
                margin-bottom: 6px;
                text-transform: uppercase;
                letter-spacing: 0.04em
            }

            .rp-modal-body input, .rp-modal-body select, .rp-modal-body textarea {
                width: 100%;
                padding: 10px 14px;
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 10px;
                background: rgba(15, 23, 42, 0.6);
                color: #e2e8f0;
                font-size: 0.88rem;
                font-family: inherit;
                margin-bottom: 16px;
                box-sizing: border-box
            }

            .rp-modal-body input:focus, .rp-modal-body select:focus, .rp-modal-body textarea:focus {
                outline: none;
                border-color: rgba(6, 182, 212, 0.5)
            }

            .rp-modal-foot {
                padding: 16px 28px;
                border-top: 1px solid rgba(255, 255, 255, 0.06);
                display: flex;
                gap: 10px;
                justify-content: flex-end
            }

            /* Stars */
            .rp-stars {
                display: flex;
                gap: 4px;
                margin-bottom: 16px
            }

            .rp-star {
                font-size: 1.6rem;
                cursor: pointer;
                color: rgba(255, 255, 255, 0.15);
                transition: all .15s
            }

            .rp-star:hover, .rp-star.active {
                color: #fbbf24;
                transform: scale(1.15)
            }

            /* ═══ TOAST ═══ */
            .rp-toast {
                position: fixed;
                bottom: 24px;
                left: 50%;
                transform: translateX(-50%);
                background: rgba(15, 23, 42, 0.95);
                backdrop-filter: blur(12px);
                border: 1px solid rgba(255, 255, 255, 0.1);
                color: #e2e8f0;
                padding: 14px 28px;
                border-radius: 14px;
                font-size: 0.85rem;
                font-weight: 500;
                z-index: 99999;
                display: none;
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
                animation: rpToastIn .3s ease
            }

            .rp-toast.show {
                display: block
            }

            .rp-toast.success {
                border-color: rgba(74, 222, 128, 0.3)
            }

            .rp-toast.error {
                border-color: rgba(248, 113, 113, 0.3)
            }

            @keyframes rpToastIn {
                from {
                    opacity: 0;
                    transform: translateX(-50%) translateY(16px)
                }
                to {
                    opacity: 1;
                    transform: translateX(-50%) translateY(0)
                }
            }

            /* ═══ LOADING ═══ */
            .rp-loading {
                text-align: center;
                padding: 80px 20px
            }

            .rp-spinner {
                width: 40px;
                height: 40px;
                border: 3px solid rgba(6, 182, 212, 0.2);
                border-top-color: #06b6d4;
                border-radius: 50%;
                animation: rpSpin .8s linear infinite;
                margin: 0 auto 16px
            }

            @keyframes rpSpin {
                to {
                    transform: rotate(360deg)
                }
            }

            @media (max-width: 640px) {
                .rp-hero h1 {
                    font-size: 1.8rem
                }

                .rp-stats {
                    gap: 20px
                }

                .rp-stat-num {
                    font-size: 1.4rem
                }

                .rp-tabs {
                    gap: 6px
                }

                .rp-card-head {
                    padding: 14px 16px;
                    gap: 12px
                }

                .rp-card-icon {
                    width: 40px;
                    height: 40px;
                    font-size: 1rem;
                    border-radius: 12px
                }

                .rp-card-title {
                    font-size: 0.85rem
                }

                .rp-detail-grid {
                    grid-template-columns:1fr
                }

                .rp-detail-inner {
                    padding: 0 16px 16px
                }

                .rp-actions {
                    flex-direction: column
                }

                .rp-btn {
                    width: 100%;
                    justify-content: center
                }

                .rp-new-btn {
                    margin-left: 0;
                    width: 100%;
                    justify-content: center
                }
            }
