/* 
   Prayer & Qibla Redesign Styling
   Matches Image 1 (Prayer dashboard) and Image 2 (Dedicated Qibla Compass)
*/

.prayer-view-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.prayer-top-hero {
    position: relative;
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: background-image 0.5s ease-in-out;
}

.prayer-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    color: white;
}

.prayer-hero-overlay h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.prayer-hero-overlay h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    margin: 2px 0 10px 0;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    line-height: 1;
}

.location-badge {
    background: #1d628f; /* Blue pill to match Image 1 */
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.prayer-bottom-content {
    padding: 10px 0;
    width: 100%;
}

/* Image 1 Date Banner */
.dates-banner {
    background: white;
    border-radius: 15px;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #2c3e50;
    margin-bottom: 20px;
    direction: rtl;
}

body.dark-theme .dates-banner {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: white;
    box-shadow: none;
}

.banner-date-text {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 0.92rem;
}

.banner-chevron {
    color: #00adb5; /* Cyan color */
    font-size: 1.1rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.banner-chevron:hover {
    background: rgba(0, 173, 181, 0.1);
}

.banner-action-btn {
    color: #2c3e50;
    font-size: 1.1rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

body.dark-theme .banner-action-btn {
    color: #a0aec0;
}

.banner-action-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

body.dark-theme .banner-action-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Horizontal Prayer list */
.horizontal-prayer-list {
    display: flex;
    justify-content: space-between;
    background: white;
    border-radius: 20px;
    padding: 15px 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

body.dark-theme .horizontal-prayer-list {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.prayer-time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    font-family: 'Cairo', sans-serif;
}

.prayer-time-box .p-name {
    font-size: 0.88rem;
    font-weight: 800;
    color: #34495e;
    margin-bottom: 6px;
}

body.dark-theme .prayer-time-box .p-name {
    color: #cbd5e0;
}

.prayer-time-box .p-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f4f6f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 6px;
    transition: all 0.3s;
    /* Custom colored icons matching image 1 */
    color: #7f8c8d;
}

body.dark-theme .prayer-time-box .p-icon {
    background: rgba(0,0,0,0.3);
}

/* Colored Icons according to Image 1 */
.prayer-time-box:nth-child(1) .p-icon { color: #3498db; } /* Fajr - Blue */
.prayer-time-box:nth-child(2) .p-icon { color: #e67e22; } /* Sunrise - Orange */
.prayer-time-box:nth-child(3) .p-icon { color: #f1c40f; } /* Dhuhr - Yellow */
.prayer-time-box:nth-child(4) .p-icon { color: #9b59b6; } /* Asr - Purple */
.prayer-time-box:nth-child(5) .p-icon { color: #e74c3c; } /* Maghrib - Red */
.prayer-time-box:nth-child(6) .p-icon { color: #1f3c88; } /* Isha - Dark Blue */

.prayer-time-box .p-time {
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: #2c3e50;
}

body.dark-theme .prayer-time-box .p-time {
    color: white;
}

/* Active Highlight */
.prayer-time-box.active .p-name {
    color: var(--gold-dark);
}

.prayer-time-box.active .p-icon {
    background: var(--gold-glow);
    color: white !important;
    box-shadow: 0 4px 10px rgba(212,175,55,0.4);
    transform: scale(1.08);
}

.prayer-time-box.active .p-time {
    color: var(--gold-dark);
}

/* Night Thirds row */
.night-thirds-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.night-box {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
    font-size: 0.88rem;
    color: #2c3e50;
}

body.dark-theme .night-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: white;
}

.night-box span {
    color: #00adb5; /* Cyan color to match image 1 */
    font-family: 'Roboto', sans-serif;
    margin-right: 5px;
    font-size: 0.95rem;
}

/* ==========================================
   Dedicated Qibla Compass Section (Image 2)
   ========================================== */

/* Sub-Tab Navigation Bar */
.qibla-tabs-bar {
    display: flex;
    background: #0f3657; /* Deep blue background */
    border-bottom: 2px solid #0c2b46;
    padding: 2px;
    direction: rtl;
}

.qibla-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: #e2e8f0;
    gap: 4px;
    transition: all 0.3s;
}

.qibla-tab i {
    font-size: 1.15rem;
}

.qibla-tab.active {
    background: #0c2b46; /* Darker blue active background */
    box-shadow: inset 0 -3px 0 var(--gold-glow);
}

/* Location marker banner */
.qibla-location-strip {
    background: #144a74;
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: white;
}

/* Coordinates text display */
.qibla-coords-display {
    font-family: 'Roboto', 'Cairo', sans-serif;
    font-size: 0.85rem;
    color: #cbd5e0; margin: 10px 0; font-weight: 700;
    text-align: center;
}

/* Modern Compass Graphic */
.compass-card-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 290px;
    margin-bottom: 10px;
}

.compass-help-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    background: none;
    border: none;
    color: #00adb5; /* Cyan help */
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    transition: transform 0.2s;
}

.compass-help-btn:hover {
    transform: scale(1.1);
}

.modern-compass-outer {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.modern-compass-dial {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.compass-ticks-ring {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-image: repeating-conic-gradient(
        from 0deg,
        rgba(44, 62, 80, 0.4) 0deg 0.5deg,
        transparent 0.5deg 5deg
    );
    opacity: 0.7;
}

.compass-label {
    position: absolute;
    font-family: 'Cairo', 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 1.05rem;
    color: #1e293b;
    text-shadow: 0 1px 2px rgba(255,255,255,0.9);
    z-index: 10;
}

.compass-label.dir-n { bottom: 72px; left: 50%; transform: translateX(-50%); color: #ea580c; font-size: 1.15rem; }
.compass-label.dir-s { top: 72px; left: 50%; transform: translateX(-50%); font-size: 1.15rem; }
.compass-label.dir-e { left: 72px; top: 50%; transform: translateY(-50%); font-size: 1.15rem; }
.compass-label.dir-w { right: 72px; top: 50%; transform: translateY(-50%); font-size: 1.15rem; }

.compass-label.dir-ne { bottom: 86px; left: 86px; font-size: 0.7rem; color: #7f8c8d; }
.compass-label.dir-se { top: 86px; left: 86px; font-size: 0.7rem; color: #7f8c8d; }
.compass-label.dir-sw { top: 86px; right: 86px; font-size: 0.7rem; color: #7f8c8d; }
.compass-label.dir-nw { bottom: 86px; right: 86px; font-size: 0.7rem; color: #7f8c8d; }

.compass-kaaba-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 15;
}

.compass-kaaba-marker {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 38px;
    height: 38px;
    background: #f97316;
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.25);
    z-index: 25;
    pointer-events: auto;
}

.royal-gold-kaaba-marker {
    background: linear-gradient(135deg, #f3e098, #d4af37, #aa7c11) !important;
    color: #0b1724 !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 0 15px rgba(212,175,55,0.7) !important;
}

.royal-compass-rim {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

@keyframes pulse-text {
    0% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.6; transform: scale(1); }
}

.activate-compass-text {
    display: inline-block;
    animation: pulse-text 1.6s infinite ease-in-out;
}

.compass-kaaba-marker i {
    font-size: 1rem;
}

.modern-compass-needle {
    position: absolute;
    width: 20px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    pointer-events: none;
}

.needle-north {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 76px solid #bdc3c7; /* Light grey North */
}

.needle-center {
    width: 14px;
    height: 14px;
    background: #e67e22; /* Orange circle center */
    border: 3px solid white;
    border-radius: 50%;
    margin-top: -7px;
    z-index: 8;
}

.needle-south {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 76px solid #2c3e50; /* Dark blue/grey South */
    margin-top: -7px;
}

.compass-top-index {
    position: absolute;
    top: -12px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #7f8c8d;
    z-index: 10;
}

.compass-status-text {
    font-family: 'Cairo', sans-serif;
    font-size: 0.88rem;
    color: #cbd5e0; margin-top: 15px; font-weight: 700;
    text-align: center;
    min-height: 24px;
}

/* Bottom Stats Panel & Badges */
.qibla-bottom-panel {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1.3fr;
    gap: 8px;
    width: 100%;
    max-width: 380px;
    margin-top: 10px;
    align-items: center;
}

.qibla-micro-pill {
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 10px 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.82rem;
    color: #cbd5e0;
    text-align: center;
    height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.qibla-badge-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 8px 6px;
    text-align: center;
    height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.qibla-badge-card::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 12px;
    border: 1px dashed rgba(212, 175, 55, 0.15);
    pointer-events: none;
}

.badge-card-content {
    z-index: 2;
}

.badge-val {
    font-family: 'Roboto', 'Cairo', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: white; margin-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.badge-val i {
    color: var(--gold-glow);
    font-size: 0.85rem;
}

.badge-lbl {
    font-family: 'Cairo', sans-serif;
    font-size: 0.65rem;
    color: #a0aec0;
}

/* Bubble Level Widget */
.bubble-level-widget {
    grid-column: 1 / 4;
    justify-self: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #111;
    border: 2px solid #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.bubble-level-ring {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.bubble-level-cross-h {
    position: absolute;
    top: 50%; left: 10%; right: 10%;
    height: 1px;
    background: rgba(255,255,255,0.15);
    transform: translateY(-50%);
}

.bubble-level-cross-v {
    position: absolute;
    left: 50%; top: 10%; bottom: 10%;
    width: 1px;
    background: rgba(255,255,255,0.15);
    transform: translateX(-55%);
}

.bubble-level-center-circle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0, 173, 181, 0.4);
}

.bubble-level-bubble {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00adb5; /* Cyan bubble */
    box-shadow: 0 0 6px #00adb5;
    transition: all 0.05s ease-out;
}

/* ──────────────────────────────────────────
   Profile Header Wrapper & Hover Popover
   ────────────────────────────────────────── */
.profile-header-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.profile-popover {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(11, 15, 25, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    padding: 12px 15px;
    width: 210px;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    direction: rtl;
    text-align: right;
}

.profile-header-wrapper:hover .profile-popover {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.profile-popover h4 {
    font-family: 'Cairo', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    margin: 0;
    color: white;
}

.profile-popover span {
    font-family: 'Cairo', sans-serif;
    font-size: 0.75rem;
    color: #cbd5e0;
    line-height: 1.4;
}

.popover-stats {
    display: flex;
    gap: 8px;
    margin-top: 5px;
}

.popover-stat-badge {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.72rem;
    color: white;
}

.popover-stat-badge i.stat-fire {
    color: #e74c3c;
}

.popover-stat-badge i.stat-bookmark {
    color: var(--royal-gold);
}

/* ──────────────────────────────────────────
   Monthly Prayer Times Table & Actions
   ────────────────────────────────────────── */
.prayer-month-table th, .prayer-month-table td {
    padding: 10px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.prayer-month-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.prayer-month-table tr.active-day {
    background: #ff5252 !important; /* Orange/red active day */
    color: white !important;
    font-weight: 800;
}

.prayer-month-table tr.active-day td {
    color: white !important;
}

.month-action-circle-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0f3657;
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.month-action-circle-btn:hover {
    background: var(--gold-glow);
    color: #070b19;
    transform: scale(1.06);
}
/* ────────────────────────────────────────── */
/* LUXURY MONTHLY TIMINGS CSS                 */
/* ────────────────────────────────────────── */

.premium-location-badge {
    background: linear-gradient(135deg, rgba(20, 74, 116, 0.6), rgba(12, 43, 70, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    padding: 8px 18px;
    border-radius: 20px;
    font-family: 'Cairo', sans-serif;
    color: var(--gold-glow);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.premium-month-table-container {
    background: rgba(12, 43, 70, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.premium-month-table tbody tr {
    background: rgba(15, 54, 87, 0.4);
    transition: all 0.2s ease;
    border-radius: 8px;
}

.premium-month-table tbody tr td {
    padding: 12px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.premium-month-table tbody tr:first-child td:first-child { border-top-right-radius: 8px; }
.premium-month-table tbody tr:first-child td:last-child { border-top-left-radius: 8px; }
.premium-month-table tbody tr:last-child td:first-child { border-bottom-right-radius: 8px; }
.premium-month-table tbody tr:last-child td:last-child { border-bottom-left-radius: 8px; }

.premium-month-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.01);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: default;
}

.premium-month-table tbody tr.active-day {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-right: 4px solid var(--royal-gold);
    font-weight: 700;
}

.premium-month-actions {
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.premium-month-action-btn {
    height: 44px;
    padding: 0 24px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(20, 74, 116, 0.8), rgba(12, 43, 70, 0.9));
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    color: white;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.premium-month-action-btn i {
    color: var(--royal-gold, #d4af37);
}

.premium-month-action-btn:hover {
    background: var(--royal-gold, #d4af37);
    color: #070b19;
    border-color: #f1c40f;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

.premium-month-action-btn:hover i {
    color: #070b19;
}

/* PRINT MEDIA QUERY (Solves the white page issue) */
@media print {
    body.print-monthly-timings * {
        visibility: hidden;
    }
    body.print-monthly-timings #quran-tab-prayer-month,
    body.print-monthly-timings #quran-tab-prayer-month * {
        visibility: visible;
    }
    body.print-monthly-timings #quran-tab-prayer-month {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        background: white !important;
        color: black !important;
        display: block !important;
    }
    body.print-monthly-timings .premium-month-table {
        color: black !important;
        border-collapse: collapse !important;
    }
    body.print-monthly-timings .premium-month-table th {
        color: black !important;
        background: #f0f0f0 !important;
        border: 1px solid #ccc !important;
    }
    body.print-monthly-timings .premium-month-table td {
        border: 1px solid #ccc !important;
        color: black !important;
    }
    body.print-monthly-timings .premium-month-actions,
    body.print-monthly-timings .month-nav-btn {
        display: none !important;
    }
    body.print-monthly-timings .premium-month-table tbody tr {
        background: none !important;
        box-shadow: none !important;
    }
}
