/* /Components/ImageGallery.razor.rz.scp.css */
/* Single Image Layout */
.image-gallery-single[b-gwxudcrzbj] {
    width: 100%;
    margin-bottom: 24px;
}

.image-gallery-single .main-image-container[b-gwxudcrzbj] {
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    height: 450px;
    cursor: pointer;
}

.image-gallery-single .main-image-container img[b-gwxudcrzbj] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-gallery-single .main-image-container:hover img[b-gwxudcrzbj] {
    transform: scale(1.02);
}

/* Gallery Layout - Vertical Stack */
.image-gallery[b-gwxudcrzbj] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 24px;
}

/* Main Image Container */
.main-image-container[b-gwxudcrzbj] {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    height: 450px;
    cursor: pointer;
}

.main-image-container img[b-gwxudcrzbj] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image-container:hover img[b-gwxudcrzbj] {
    transform: scale(1.02);
}

/* Image Counter Badge */
.image-counter[b-gwxudcrzbj] {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    pointer-events: none;
}

/* Main Image Navigation Arrows */
.main-nav-btn[b-gwxudcrzbj] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.main-image-container:hover .main-nav-btn[b-gwxudcrzbj] {
    opacity: 1;
}

.main-nav-btn:hover[b-gwxudcrzbj] {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.main-nav-left[b-gwxudcrzbj] {
    left: 16px;
}

.main-nav-right[b-gwxudcrzbj] {
    right: 16px;
}

/* Thumbnail Carousel */
.thumbnail-carousel[b-gwxudcrzbj] {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.carousel-nav-btn[b-gwxudcrzbj] {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    background: #fff;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.carousel-nav-btn:hover:not(:disabled)[b-gwxudcrzbj] {
    background: #f5f5f5;
    border-color: #ccc;
    color: #333;
}

.carousel-nav-btn:disabled[b-gwxudcrzbj] {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Thumbnail Track */
.thumbnail-track[b-gwxudcrzbj] {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    padding: 4px 0;
    scrollbar-width: none;
}

.thumbnail-track[b-gwxudcrzbj]::-webkit-scrollbar {
    display: none;
}

/* Individual Thumbnail */
.thumbnail[b-gwxudcrzbj] {
    width: 100px;
    height: 75px;
    min-width: 100px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    background: #f5f5f5;
    flex-shrink: 0;
}

.thumbnail img[b-gwxudcrzbj] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.thumbnail:hover[b-gwxudcrzbj] {
    border-color: #FFB74D;
}

.thumbnail:hover img[b-gwxudcrzbj] {
    transform: scale(1.1);
}

.thumbnail.active[b-gwxudcrzbj] {
    border-color: #FFA726;
    box-shadow: 0 2px 8px rgba(255, 167, 38, 0.4);
}

/* Lightbox Styles */
.lightbox-overlay[b-gwxudcrzbj] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn-b-gwxudcrzbj 0.2s ease;
}

.lightbox-content[b-gwxudcrzbj] {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img[b-gwxudcrzbj] {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close[b-gwxudcrzbj] {
    position: absolute;
    top: -60px;
    right: 0;
    color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
    z-index: 10001;
}

.lightbox-close:hover[b-gwxudcrzbj] {
    background: rgba(255, 255, 255, 0.2) !important;
}

.lightbox-nav-left[b-gwxudcrzbj],
.lightbox-nav-right[b-gwxudcrzbj] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
    z-index: 10001;
}

.lightbox-nav-left:hover[b-gwxudcrzbj],
.lightbox-nav-right:hover[b-gwxudcrzbj] {
    background: rgba(255, 255, 255, 0.2) !important;
}

.lightbox-nav-left[b-gwxudcrzbj] {
    left: -80px;
}

.lightbox-nav-right[b-gwxudcrzbj] {
    right: -80px;
}

.lightbox-counter[b-gwxudcrzbj] {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 16px;
    white-space: nowrap;
}

@keyframes fadeIn-b-gwxudcrzbj {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Tablet Styles */
@media (max-width: 960px) {
    .main-image-container[b-gwxudcrzbj] {
        height: 380px;
    }

    .image-gallery-single .main-image-container[b-gwxudcrzbj] {
        height: 380px;
    }

    .thumbnail[b-gwxudcrzbj] {
        width: 90px;
        height: 68px;
        min-width: 90px;
    }

    .lightbox-nav-left[b-gwxudcrzbj] {
        left: -60px;
    }

    .lightbox-nav-right[b-gwxudcrzbj] {
        right: -60px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .main-image-container[b-gwxudcrzbj] {
        height: 280px;
    }

    .image-gallery-single .main-image-container[b-gwxudcrzbj] {
        height: 280px;
    }

    .main-nav-btn[b-gwxudcrzbj] {
        width: 36px;
        height: 36px;
        opacity: 1;
    }

    .main-nav-left[b-gwxudcrzbj] {
        left: 8px;
    }

    .main-nav-right[b-gwxudcrzbj] {
        right: 8px;
    }

    .thumbnail[b-gwxudcrzbj] {
        width: 80px;
        height: 60px;
        min-width: 80px;
    }

    .carousel-nav-btn[b-gwxudcrzbj] {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    .image-counter[b-gwxudcrzbj] {
        bottom: 12px;
        right: 12px;
        padding: 4px 10px;
        font-size: 12px;
    }

    /* Lightbox mobile adjustments */
    .lightbox-nav-left[b-gwxudcrzbj],
    .lightbox-nav-right[b-gwxudcrzbj] {
        position: fixed;
        top: 50%;
    }

    .lightbox-nav-left[b-gwxudcrzbj] {
        left: 10px;
    }

    .lightbox-nav-right[b-gwxudcrzbj] {
        right: 10px;
    }

    .lightbox-close[b-gwxudcrzbj] {
        top: 10px;
        right: 10px;
    }

    .lightbox-counter[b-gwxudcrzbj] {
        bottom: 20px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .main-image-container[b-gwxudcrzbj] {
        height: 220px;
    }

    .image-gallery-single .main-image-container[b-gwxudcrzbj] {
        height: 220px;
    }

    .thumbnail[b-gwxudcrzbj] {
        width: 70px;
        height: 52px;
        min-width: 70px;
    }
}
/* /Components/RecentSearches.razor.rz.scp.css */
/* Compact Recent Searches */
.recent-searches-compact[b-g6e28qpxpx] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.recent-label[b-g6e28qpxpx] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #6b7280;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.recent-label .mud-icon-root[b-g6e28qpxpx] {
    font-size: 0.95rem;
    color: #9ca3af;
}

.recent-items-row[b-g6e28qpxpx] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Individual Recent Item - Pill/Tag Style */
.recent-item[b-g6e28qpxpx] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px 6px 12px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.15s ease;
    max-width: 200px;
}

.recent-item:hover[b-g6e28qpxpx] {
    background: #e0e7ff;
    border-color: #a5b4fc;
}

.item-text[b-g6e28qpxpx] {
    font-size: 0.8rem;
    color: #374151;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recent-item:hover .item-text[b-g6e28qpxpx] {
    color: #4338ca;
}

.item-remove[b-g6e28qpxpx] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.15s;
    flex-shrink: 0;
}

.item-remove:hover[b-g6e28qpxpx] {
    background: rgba(239, 68, 68, 0.15);
    opacity: 1;
}

.item-remove .mud-icon-root[b-g6e28qpxpx] {
    font-size: 0.75rem;
    color: #6b7280;
}

.item-remove:hover .mud-icon-root[b-g6e28qpxpx] {
    color: #dc2626;
}

/* Clear All Button */
.clear-all-btn[b-g6e28qpxpx] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    background: transparent;
    border: 1px dashed #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.15s;
}

.clear-all-btn:hover[b-g6e28qpxpx] {
    background: #fef2f2;
    border-color: #fca5a5;
}

.clear-all-btn .mud-icon-root[b-g6e28qpxpx] {
    font-size: 0.9rem;
    color: #9ca3af;
}

.clear-all-btn:hover .mud-icon-root[b-g6e28qpxpx] {
    color: #dc2626;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .recent-searches-compact[b-g6e28qpxpx] {
        gap: 8px;
        margin-top: 10px;
    }

    .recent-items-row[b-g6e28qpxpx] {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .recent-items-row[b-g6e28qpxpx]::-webkit-scrollbar {
        display: none;
    }

    .recent-item[b-g6e28qpxpx] {
        flex-shrink: 0;
        max-width: 180px;
    }

    .item-remove[b-g6e28qpxpx] {
        opacity: 0.7;
    }
}
/* /Components/SearchFilterPanel.razor.rz.scp.css */
/* Filter Panel Container */
.filter-panel-container[b-tswfvlm5dt] {
    width: 300px;
    border-right: 1px solid #E0E0E0;
    background-color: #FAFAFA;
    display: flex;
    flex-direction: column;
}

/* Hide close button on desktop */
.mobile-close-btn[b-tswfvlm5dt] {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-close-btn[b-tswfvlm5dt] {
        display: flex !important;
    }
}

/* Filter Header */
.filter-header[b-tswfvlm5dt] {
    padding: 16px;
    border-bottom: 1px solid #E0E0E0;
    background-color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.filter-count-badge[b-tswfvlm5dt] {
    background-color: #1976D2;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

/* Filter Sections Container */
.filter-sections[b-tswfvlm5dt] {
    flex: 1;
}

/* Filter Section Header */
.filter-section-header[b-tswfvlm5dt] {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.filter-section-title[b-tswfvlm5dt] {
    flex: 1;
    font-weight: 500 !important;
}

.reset-button[b-tswfvlm5dt] {
    margin-left: auto;
}

/* Filter Section Content */
.filter-section-content[b-tswfvlm5dt] {
    padding: 12px 16px;
}

/* Location Display */
.location-display[b-tswfvlm5dt] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Filter Actions (Top and Bottom Buttons) */
.filter-actions[b-tswfvlm5dt] {
    padding: 12px 16px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-shrink: 0;
}

/* Top action buttons */
.filter-actions-top[b-tswfvlm5dt] {
    border-bottom: 1px solid #E0E0E0;
}

/* Bottom action buttons */
.filter-actions-bottom[b-tswfvlm5dt] {
    border-top: 1px solid #E0E0E0;
}

/* Specific button styling */
[b-tswfvlm5dt] .filter-action-button {
    flex: 1;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 6px 12px !important;
    min-height: 32px !important;
    height: 32px !important;
    text-transform: none !important;
}

/* Remove any icons from filter action buttons */
[b-tswfvlm5dt] .filter-action-button .mud-button-start-icon,
[b-tswfvlm5dt] .filter-action-button .mud-button-end-icon {
    display: none !important;
}

/* Radio and Checkbox Spacing */
[b-tswfvlm5dt] .mud-radio {
    margin-bottom: 8px;
}

[b-tswfvlm5dt] .mud-input-control-input-container {
    margin-bottom: 4px !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .filter-panel-container[b-tswfvlm5dt] {
        width: 100%;
        max-width: 100vw;
        position: fixed;
        top: 0;
        left: -100%;
        z-index: 1300;
        border-right: none;
        max-height: 100vh;
        height: 100vh;
        overflow-y: auto;
        background-color: #fff;
        transition: left 0.3s ease-in-out;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .filter-panel-container.filter-open[b-tswfvlm5dt] {
        left: 0;
    }
}

/* Only stack buttons on very small screens */
@media (max-width: 400px) {
    .filter-actions[b-tswfvlm5dt] {
        flex-direction: column;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .filter-panel-container[b-tswfvlm5dt] {
        width: 280px;
    }
}

/* Ensure proper spacing for MudCheckBox and MudRadio */
[b-tswfvlm5dt] .mud-checkbox,
[b-tswfvlm5dt] .mud-radio {
    padding: 4px 0;
}

/* Filter Summary Chips */
.filter-summary-container[b-tswfvlm5dt] {
    padding: 12px 16px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

[b-tswfvlm5dt] .filter-summary-chip {
    font-size: 12px !important;
    height: 28px !important;
    cursor: pointer;
    transition: all 0.2s ease;
}

[b-tswfvlm5dt] .filter-summary-chip:hover {
    background-color: #e3f2fd !important;
    border-color: #1976d2 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.filter-summary-container:empty[b-tswfvlm5dt] {
    display: none;
}

/* Collapse Section Styles */
.collapse-section[b-tswfvlm5dt] {
    border-bottom: 1px solid #E0E0E0;
}

.collapse-header[b-tswfvlm5dt] {
    padding: 12px 16px;
    cursor: pointer;
    background-color: transparent;
    transition: background-color 0.2s ease;
}

.collapse-header:hover[b-tswfvlm5dt] {
    background-color: rgba(0, 0, 0, 0.04);
}
/* /Components/SearchRefinementDialog.razor.rz.scp.css */
/* SearchRefinementDialog.razor.css */
/* Scoped CSS for conversational, step-by-step search refinement dialog */

/* Question text styling */
.question-text[b-wvnsd1ka30] {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--mud-palette-text-primary);
}

/* Chip container styling */
.party-type-chips[b-wvnsd1ka30],
.guest-count-chips[b-wvnsd1ka30],
.services-chips[b-wvnsd1ka30],
.radius-chips[b-wvnsd1ka30],
.age-range-chips[b-wvnsd1ka30],
.venue-type-chips[b-wvnsd1ka30] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

/* Override MudBlazor chip container in dialog */
[b-wvnsd1ka30] .mud-chip-container {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
}

[b-wvnsd1ka30] .mud-chip-outlined.mud-chip-color-primary {
    min-width: 300px;
}

/* Center align guest count chips */
.guest-count-chips[b-wvnsd1ka30] {
    justify-content: center;
}

/* Guest count question styling */
.guest-count-question[b-wvnsd1ka30] {
    text-align: center;
    font-weight: 700 !important;
}

.party-type-chips .mud-chip[b-wvnsd1ka30],
.guest-count-chips .mud-chip[b-wvnsd1ka30],
.services-chips .mud-chip[b-wvnsd1ka30],
.radius-chips .mud-chip[b-wvnsd1ka30],
.age-range-chips .mud-chip[b-wvnsd1ka30],
.venue-type-chips .mud-chip[b-wvnsd1ka30] {
    margin: 0.25rem;
    flex: 0 0 auto;
}

/* Selected chip styling - make it more prominent */
.party-type-chips .mud-chip.mud-chip-selected[b-wvnsd1ka30],
.venue-type-chips .mud-chip.mud-chip-selected[b-wvnsd1ka30],
.radius-chips .mud-chip.mud-chip-selected[b-wvnsd1ka30],
.guest-count-chips .mud-chip.mud-chip-selected[b-wvnsd1ka30],
.age-range-chips .mud-chip.mud-chip-selected[b-wvnsd1ka30],
.services-chips .mud-chip.mud-chip-selected[b-wvnsd1ka30] {
    background-color: #f5f5f5 !important;
    color: #333333 !important;
    border-width: 3px !important;
    border-style: solid !important;
    border-color: #ff6b35 !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4), 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    transform: scale(1.02);
    transition: all 0.2s ease;
}

/* Force orange border on selected chips - highest specificity */
::ng-deep .party-type-chips .mud-chip.mud-chip-selected[b-wvnsd1ka30],
::ng-deep .venue-type-chips .mud-chip.mud-chip-selected[b-wvnsd1ka30],
::ng-deep .radius-chips .mud-chip.mud-chip-selected[b-wvnsd1ka30],
::ng-deep .guest-count-chips .mud-chip.mud-chip-selected[b-wvnsd1ka30],
::ng-deep .age-range-chips .mud-chip.mud-chip-selected[b-wvnsd1ka30],
::ng-deep .services-chips .mud-chip.mud-chip-selected[b-wvnsd1ka30] {
    border-color: #ff6b35 !important;
    background-color: #f5f5f5 !important;
}

.party-type-chips .mud-chip.mud-chip-selected .mud-icon[b-wvnsd1ka30],
.venue-type-chips .mud-chip.mud-chip-selected .mud-icon[b-wvnsd1ka30],
.radius-chips .mud-chip.mud-chip-selected .mud-icon[b-wvnsd1ka30],
.guest-count-chips .mud-chip.mud-chip-selected .mud-icon[b-wvnsd1ka30],
.age-range-chips .mud-chip.mud-chip-selected .mud-icon[b-wvnsd1ka30],
.services-chips .mud-chip.mud-chip-selected .mud-icon[b-wvnsd1ka30] {
    color: #333333 !important;
}

/* Checkmark styling for selected chips */
.party-type-chips .mud-chip.mud-chip-selected .mud-chip-checkmark[b-wvnsd1ka30],
.venue-type-chips .mud-chip.mud-chip-selected .mud-chip-checkmark[b-wvnsd1ka30],
.radius-chips .mud-chip.mud-chip-selected .mud-chip-checkmark[b-wvnsd1ka30],
.guest-count-chips .mud-chip.mud-chip-selected .mud-chip-checkmark[b-wvnsd1ka30],
.age-range-chips .mud-chip.mud-chip-selected .mud-chip-checkmark[b-wvnsd1ka30],
.services-chips .mud-chip.mud-chip-selected .mud-chip-checkmark[b-wvnsd1ka30] {
    color: #333333 !important;
}

/* Hover effect for non-selected chips */
.party-type-chips .mud-chip:not(.mud-chip-selected):hover[b-wvnsd1ka30],
.venue-type-chips .mud-chip:not(.mud-chip-selected):hover[b-wvnsd1ka30],
.radius-chips .mud-chip:not(.mud-chip-selected):hover[b-wvnsd1ka30],
.guest-count-chips .mud-chip:not(.mud-chip-selected):hover[b-wvnsd1ka30],
.age-range-chips .mud-chip:not(.mud-chip-selected):hover[b-wvnsd1ka30],
.services-chips .mud-chip:not(.mud-chip-selected):hover[b-wvnsd1ka30] {
    background-color: rgba(var(--mud-palette-primary-rgb), 0.08) !important;
    border-color: var(--mud-palette-primary) !important;
}

/* Step navigation actions */
.step-actions[b-wvnsd1ka30] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--mud-palette-divider);
    margin-top: 1.5rem;
}

.step-actions-right[b-wvnsd1ka30] {
    display: flex;
    gap: 1rem;
}

/* Review summary card */
.review-summary[b-wvnsd1ka30] {
    margin-bottom: 1rem;
}

.review-item[b-wvnsd1ka30] {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    gap: 0.5rem;
    border-bottom: 1px solid var(--mud-palette-divider-light);
}

.review-item:last-child[b-wvnsd1ka30] {
    border-bottom: none;
}

.review-item .mud-text[b-wvnsd1ka30] {
    flex: 1;
}

/* Optional badge styling */
.optional-badge[b-wvnsd1ka30] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* Subtle animations - respects user preferences */
@media (prefers-reduced-motion: no-preference) {
    .mud-stepper-content[b-wvnsd1ka30] {
        transition: opacity 0.2s ease-in-out;
    }

    .mud-chip:hover[b-wvnsd1ka30] {
        transform: translateY(-1px);
        transition: transform 0.15s ease;
    }

    .step-actions button[b-wvnsd1ka30] {
        transition: all 0.2s ease;
    }

    .review-item[b-wvnsd1ka30] {
        transition: background-color 0.15s ease;
    }

    .review-item:hover[b-wvnsd1ka30] {
        background-color: var(--mud-palette-action-default-hover);
    }
}

/* No animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *[b-wvnsd1ka30] {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Screen reader only class */
.sr-only[b-wvnsd1ka30] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus visible styles for accessibility */
.mud-chip:focus-visible[b-wvnsd1ka30],
.mud-radio:focus-visible[b-wvnsd1ka30],
.mud-button:focus-visible[b-wvnsd1ka30] {
    outline: 2px solid var(--mud-palette-primary);
    outline-offset: 2px;
}

/* Ensure chips are touch-friendly on mobile */
@media (max-width: 600px) {
    .mud-chip[b-wvnsd1ka30] {
        min-height: 44px; /* Minimum touch target size */
    }

    .question-text[b-wvnsd1ka30] {
        font-size: 1.1rem;
    }
}

/* Step content container */
.step-content[b-wvnsd1ka30] {
    min-height: 200px;
}

/* Custom guest input */
.custom-guest-input[b-wvnsd1ka30] {
    margin-top: 1rem;
    max-width: 250px;
}

/* Location field spacing */
.location-field[b-wvnsd1ka30] {
    margin-top: 0.5rem;
}

/* Progress indicator styling */
.stepper-progress[b-wvnsd1ka30] {
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--mud-palette-text-secondary);
    font-size: 0.875rem;
}
/* /Components/VenueCard.razor.rz.scp.css */
/* VenueCard.razor.css - Component-scoped styles for VenueCard */

/* ===========================================
   Card Container & Base Styles
   =========================================== */

.elegant-venue-card[b-9ryueyb9dv] {
    height: 570px;
    display: flex;
    width: 100%;
}

/* Mobile responsive - full width on very small screens */
@media (max-width: 599px) {
    .elegant-venue-card[b-9ryueyb9dv] {
        width: 100%;
        min-width: 100%;
    }
}

.elegant-venue-card[b-9ryueyb9dv]  .mud-paper {
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden !important;
}

.elegant-venue-card[b-9ryueyb9dv]  .mud-card-media {
    border-radius: 12px 12px 0 0 !important;
    overflow: hidden !important;
}

.elegant-venue-card[b-9ryueyb9dv]  .mud-carousel {
    border-radius: 12px 12px 0 0 !important;
}

.elegant-venue-card[b-9ryueyb9dv]  .mud-carousel .mud-carousel-item,
.elegant-venue-card[b-9ryueyb9dv]  .mud-carousel .mud-carousel-item > div {
    border-radius: 12px 12px 0 0 !important;
    overflow: hidden !important;
}


.elegant-venue-card[b-9ryueyb9dv]  .mud-card-content {
    flex: 1;
    overflow: hidden;
}

/* ===========================================
   Venue Card Content Elements
   =========================================== */

.venue-name[b-9ryueyb9dv] {
    font-size: 17px;
    font-weight: 600;
    color: #1A1A2E;
}

.venue-location[b-9ryueyb9dv] {
    color: #FFA726;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    flex-shrink: 0;
    min-height: 20px;
}

.venue-rating[b-9ryueyb9dv] {
    color: #FFA726;
}

.venue-description[b-9ryueyb9dv] {
    color: #5A6C7D;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===========================================
   Image Styles
   =========================================== */

.venue-image-container[b-9ryueyb9dv] {
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
}

.venue-image[b-9ryueyb9dv] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.venue-image-rounded[b-9ryueyb9dv] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    cursor: pointer;
}

/* ===========================================
   Venue Details
   =========================================== */

.venue-name-truncate[b-9ryueyb9dv] {
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}

.venue-types-container[b-9ryueyb9dv] {
    margin-top: 4px;
    margin-bottom: 4px;
    margin-left: -8px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.venue-type-chip[b-9ryueyb9dv] {
    font-size: 11px;
}

.venue-rating-container[b-9ryueyb9dv] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 4px;
}

.review-line-link[b-9ryueyb9dv] {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

.review-line-link:hover[b-9ryueyb9dv] {
    text-decoration: none;
}

[b-9ryueyb9dv] .rating-static {
    pointer-events: none !important;
}

[b-9ryueyb9dv] .rating-static .mud-rating-item {
    pointer-events: none !important;
    cursor: default !important;
}

[b-9ryueyb9dv] .rating-static .mud-rating-item:hover {
    transform: none !important;
}

[b-9ryueyb9dv] .rating-static .mud-icon-root {
    pointer-events: none !important;
}

.review-line-link .review-number[b-9ryueyb9dv] {
    color: #FFA726;
}

.review-line-link .review-text[b-9ryueyb9dv] {
    color: #5A6C7D;
}

.venue-capacity-text[b-9ryueyb9dv] {
    color: #5A6C7D;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-height: 20px;
}

.venue-packages-container[b-9ryueyb9dv] {
    min-height: 50px;
    margin-top: 6px;
    margin-left: -8px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

.venue-contact-text[b-9ryueyb9dv] {
    color: #5A6C7D;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-height: 20px;
    margin-left: -2px;
    margin-top: 6px;
}

.venue-hours-text[b-9ryueyb9dv] {
    color: #5A6C7D;
    margin-top: 6px;
    margin-left: -2px;
}

.venue-badges[b-9ryueyb9dv] {
    margin-top: 8px;
}

/* ===========================================
   Utility Classes
   =========================================== */

.text-secondary[b-9ryueyb9dv] {
    color: #5A6C7D;
    font-size: 13px;
}

.text-truncate-block[b-9ryueyb9dv] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    display: block;
}

.flex-between-start[b-9ryueyb9dv] {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 8px;
}

.flex-center[b-9ryueyb9dv] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flex-shrink-gap[b-9ryueyb9dv] {
    flex-shrink: 0;
    display: flex;
    gap: 4px;
}

/* ===========================================
   Interactive Elements
   =========================================== */

.clickable-chip[b-9ryueyb9dv] {
    cursor: pointer;
    padding: 4px 8px;
    height: auto;
}

.icon-inline[b-9ryueyb9dv] {
    vertical-align: text-bottom !important;
    margin-right: 3px;
}

.link-primary[b-9ryueyb9dv] {
    color: #0071c1;
    text-decoration: none;
    font-size: 12px;
}

.contact-details-btn[b-9ryueyb9dv] {
    margin-top: 4px;
    padding: 4px 8px;
    font-size: 12px;
}

.separator-dot[b-9ryueyb9dv] {
    margin: 0 8px;
}

/* ===========================================
   Carousel
   =========================================== */

.venue-carousel[b-9ryueyb9dv] {
    border-radius: 12px 12px 0 0 !important;
    height: 100% !important;
}

.venue-carousel-container[b-9ryueyb9dv] {
    height: 100%;
    padding: 0 8px;
}

/* Ensure carousel fills container in vertical layout */
.elegant-venue-card[b-9ryueyb9dv]  .mud-carousel {
    height: 100% !important;
}

/* ===========================================
   Horizontal Layout
   =========================================== */

/* Horizontal layout wrapper */
.elegant-venue-card-horizontal[b-9ryueyb9dv] {
    width: 558px; /* 216px image + 342px details to match vertical */
    max-width: 558px;
    min-width: unset;
    height: auto; /* Height determined by content */
    margin-bottom: 16px;
}

/* Horizontal card container */
.horizontal-card-container[b-9ryueyb9dv] {
    display: flex;
    gap: 0;
    height: 252px; /* Increased to accommodate all details content without scrolling */
}

/* Image column (left side) */
.horizontal-card-image[b-9ryueyb9dv] {
    flex: 0 0 216px; /* Fixed width for image */
    width: 216px;
    height: 100%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.horizontal-card-image img[b-9ryueyb9dv] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Make image container fill full height in horizontal layout */
.elegant-venue-card-horizontal .venue-image-container[b-9ryueyb9dv] {
    height: 100%;
}

/* Details column (right side) */
.horizontal-card-details[b-9ryueyb9dv] {
    flex: 1;
    padding: 11px 14px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* Adjust carousel for horizontal layout */
.elegant-venue-card-horizontal[b-9ryueyb9dv]  .mud-carousel {
    height: 100% !important;
}

.elegant-venue-card-horizontal[b-9ryueyb9dv]  .mud-carousel-elements-button {
    background: rgba(255, 255, 255, 0.9);
    padding: 4px;
}

/* Compact spacing for horizontal layout */
.elegant-venue-card-horizontal .venue-name[b-9ryueyb9dv] {
    font-size: 16px;
}

.elegant-venue-card-horizontal[b-9ryueyb9dv]  .mud-text {
    margin-bottom: 4px;
}

.elegant-venue-card-horizontal[b-9ryueyb9dv]  .mud-chip {
    height: 22px;
    font-size: 0.7rem;
}

/* Responsive: Stack vertically on very small screens */
@media (max-width: 768px) {
    .horizontal-card-container[b-9ryueyb9dv] {
        flex-direction: column;
        height: auto;
    }

    .horizontal-card-image[b-9ryueyb9dv] {
        flex: 0 0 180px;
        width: 100%;
        height: 180px;
    }
}

/* ===========================================
   Favorite Button Overlay
   =========================================== */

.favorite-button-overlay[b-9ryueyb9dv] {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

[b-9ryueyb9dv] .favorite-heart-button {
    background-color: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
}

[b-9ryueyb9dv] .favorite-heart-button .mud-icon-root {
    color: #FF4444 !important;
    width: 24px !important;
    height: 24px !important;
    font-size: 24px !important;
}

[b-9ryueyb9dv] .favorite-heart-button:hover:not(:disabled) {
    background-color: transparent !important;
}

[b-9ryueyb9dv] .favorite-heart-button:disabled .mud-icon-root {
    color: #CCCCCC !important;
}

.favorite-button-overlay:hover[b-9ryueyb9dv] {
    background-color: rgba(255, 255, 255, 1);
}

/* ===========================================
   Image Counter Overlay
   =========================================== */

.image-counter-overlay[b-9ryueyb9dv] {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    border-radius: 12px;
    z-index: 10;
}

.image-counter-text[b-9ryueyb9dv] {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

/* Horizontal layout adjustments */
.elegant-venue-card-horizontal .favorite-button-overlay[b-9ryueyb9dv] {
    top: 8px;
    right: 8px;
}

.elegant-venue-card-horizontal .image-counter-overlay[b-9ryueyb9dv] {
    bottom: 8px;
    right: 8px;
}
/* /Components/VenueCardCompact.razor.rz.scp.css */
/* Compact venue card container - doubled size */
.compact-venue-card[b-l184m9yxe5] {
    display: flex;
    width: 600px;
    height: 240px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Image section - left side */
.compact-card-image[b-l184m9yxe5] {
    flex: 0 0 180px;
    width: 180px;
    height: 240px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compact-card-image img[b-l184m9yxe5] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compact-card-placeholder[b-l184m9yxe5] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E8F4F8 0%, #D6E4F0 100%);
    color: #A8B4C0;
}

/* Details section - right side */
.compact-card-details[b-l184m9yxe5] {
    flex: 1;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

/* Header with name and status */
.compact-header[b-l184m9yxe5] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.compact-title-row[b-l184m9yxe5] {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    overflow: hidden;
}

.compact-venue-name[b-l184m9yxe5] {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A2E;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.verified-badge[b-l184m9yxe5] {
    color: #4CAF50;
    flex-shrink: 0;
}

.compact-status-chip[b-l184m9yxe5] {
    height: 18px !important;
    padding: 0 6px !important;
    font-size: 10px !important;
    font-weight: 600 !important;
}

/* Rating line */
.rating-line[b-l184m9yxe5] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-text[b-l184m9yxe5] {
    font-size: 13px;
    font-weight: 600;
    color: #1A1A2E;
}

.rating-count[b-l184m9yxe5] {
    font-size: 12px;
    color: #5A6C7D;
}

/* Info lines */
.compact-info-line[b-l184m9yxe5] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #5A6C7D;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.compact-icon[b-l184m9yxe5] {
    color: #FFA726;
    flex-shrink: 0;
}

.compact-separator[b-l184m9yxe5] {
    margin: 0 5px;
    color: #A8B4C0;
}

.compact-hours[b-l184m9yxe5] {
    overflow: hidden;
    text-overflow: ellipsis;
}

.compact-address[b-l184m9yxe5] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 650px) {
    .compact-venue-card[b-l184m9yxe5] {
        width: 100%;
        max-width: 600px;
    }
}
/* /Components/VenueOfferingsDialog.razor.rz.scp.css */
/* Ensure MudRadioGroup content takes full width */
.package-panel[b-lzec5uk36h] {
    width: 100%;
}

.package-panel[b-lzec5uk36h]  .mud-radio-group {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.package-panel[b-lzec5uk36h]  .mud-radio-group > * {
    width: 100%;
}

/* Collapsible offering header styles */
.package-panel[b-lzec5uk36h]  .mud-paper:hover > div:first-child {
    background: #f5f5f5 !important;
}

/* Smooth collapse animation */
.package-panel[b-lzec5uk36h]  .mud-collapse-container {
    transition: height 0.3s ease;
}

/* Booking panel styling */
.booking-panel[b-lzec5uk36h]  .mud-input-outlined .mud-input-outlined-border {
    border-color: #e0e0e0;
}

.booking-panel[b-lzec5uk36h]  .mud-input-outlined:hover .mud-input-outlined-border {
    border-color: #FFA726;
}

.booking-panel[b-lzec5uk36h]  .mud-input-outlined.mud-input-focused .mud-input-outlined-border {
    border-color: #FF9800;
}

/* Form field consistency */
.booking-panel[b-lzec5uk36h]  .mud-input-label {
    font-size: 14px;
}

/* Make guest count field match special requests height */
.full-height-input[b-lzec5uk36h] {
    height: 100%;
}

.full-height-input[b-lzec5uk36h]  .mud-input-control {
    height: 100%;
}

.full-height-input[b-lzec5uk36h]  .mud-input-outlined-border {
    height: 100%;
}

.full-height-input[b-lzec5uk36h]  input {
    height: 100%;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-wm15byx4xr] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-wm15byx4xr] {
    flex: 1;
}

.sidebar[b-wm15byx4xr] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-wm15byx4xr] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-wm15byx4xr]  a, .top-row[b-wm15byx4xr]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-wm15byx4xr]  a:hover, .top-row[b-wm15byx4xr]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-wm15byx4xr]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-wm15byx4xr] {
        justify-content: space-between;
    }

    .top-row[b-wm15byx4xr]  a, .top-row[b-wm15byx4xr]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-wm15byx4xr] {
        flex-direction: row;
    }

    .sidebar[b-wm15byx4xr] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-wm15byx4xr] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-wm15byx4xr]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-wm15byx4xr], article[b-wm15byx4xr] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-l60qat2mp2] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-l60qat2mp2] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-l60qat2mp2] {
    font-size: 1.1rem;
}

.bi[b-l60qat2mp2] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-l60qat2mp2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-l60qat2mp2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-l60qat2mp2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-l60qat2mp2] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-l60qat2mp2] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-l60qat2mp2] {
        padding-bottom: 1rem;
    }

    .nav-item[b-l60qat2mp2]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-l60qat2mp2]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-l60qat2mp2]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-l60qat2mp2] {
        display: none;
    }

    .collapse[b-l60qat2mp2] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-l60qat2mp2] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/ContactUs.razor.rz.scp.css */
/* Shared Legal Page Layout */
.legal-page-container[b-vt0xoi8bqv] {
    display: flex;
    min-height: calc(100vh - 120px);
    background: #f8f9fa;
}

/* Left Navigation Panel */
.legal-nav-panel[b-vt0xoi8bqv] {
    width: 280px;
    min-width: 280px;
    background: #ffffff;
    color: #333;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: fit-content;
    max-height: 100vh;
    border-right: 1px solid #e0e0e0;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.04);
}

.nav-header[b-vt0xoi8bqv] {
    padding: 0 24px 20px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0;
}

.nav-header .nav-icon[b-vt0xoi8bqv] {
    color: var(--mud-palette-primary, #1a237e);
    margin-bottom: 8px;
}

.nav-header h3[b-vt0xoi8bqv] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
}

.nav-links[b-vt0xoi8bqv] {
    flex: 1;
    padding: 0;
}

.nav-link[b-vt0xoi8bqv] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    color: #555;
    text-decoration: none;
    border-radius: 0;
    margin-bottom: 0;
    transition: all 0.2s ease;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.nav-link:last-child[b-vt0xoi8bqv] {
    border-bottom: none;
}

.nav-link:hover[b-vt0xoi8bqv] {
    background: #f5f5f5;
    color: var(--mud-palette-primary, #1a237e);
}

.nav-link:hover .mud-icon-root[b-vt0xoi8bqv] {
    color: var(--mud-palette-primary, #1a237e) !important;
}

.nav-link .mud-icon-root[b-vt0xoi8bqv] {
    color: #888 !important;
    transition: color 0.2s ease;
}

.nav-link.active[b-vt0xoi8bqv] {
    background: #f0f4ff;
    color: var(--mud-palette-primary, #1a237e);
    font-weight: 600;
}

.nav-link.active .mud-icon-root[b-vt0xoi8bqv] {
    color: var(--mud-palette-primary, #1a237e) !important;
}

.nav-link.active[b-vt0xoi8bqv]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--mud-palette-primary, #1a237e);
    border-radius: 0 4px 4px 0;
}

.nav-footer[b-vt0xoi8bqv] {
    padding: 20px 24px;
    border-top: 1px solid #e0e0e0;
    margin-top: auto;
    font-size: 0.75rem;
    color: #888;
    background: #fafafa;
}

.nav-footer p[b-vt0xoi8bqv] {
    margin: 0 0 4px;
}

.nav-footer .address[b-vt0xoi8bqv] {
    line-height: 1.4;
}

/* Main Content Area */
.legal-main-content[b-vt0xoi8bqv] {
    flex: 1;
    padding: 40px 60px;
    max-width: 900px;
}

/* Contact Page Header */
.contact-header[b-vt0xoi8bqv] {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header .header-icon[b-vt0xoi8bqv] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.contact-header h1[b-vt0xoi8bqv] {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
}

.contact-header p[b-vt0xoi8bqv] {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Form Card */
.contact-form-card[b-vt0xoi8bqv] {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    margin-bottom: 32px;
}

.form-section[b-vt0xoi8bqv] {
    margin-bottom: 28px;
}

.form-section:last-of-type[b-vt0xoi8bqv] {
    margin-bottom: 0;
}

.section-title[b-vt0xoi8bqv] {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a237e;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e8eaf6;
}

.form-row[b-vt0xoi8bqv] {
    display: flex;
    gap: 20px;
}

.form-field[b-vt0xoi8bqv] {
    flex: 1;
}

.form-field.full-width[b-vt0xoi8bqv] {
    width: 100%;
}

.form-actions[b-vt0xoi8bqv] {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.submit-btn[b-vt0xoi8bqv] {
    min-width: 220px;
    height: 48px;
    font-weight: 600;
    font-size: 1rem;
}

/* Info Cards */
.contact-info-cards[b-vt0xoi8bqv] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-card[b-vt0xoi8bqv] {
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #eee;
}

.info-card h4[b-vt0xoi8bqv] {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 12px 0 8px;
}

.info-card p[b-vt0xoi8bqv] {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .legal-main-content[b-vt0xoi8bqv] {
        padding: 32px 40px;
    }

    .contact-info-cards[b-vt0xoi8bqv] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .legal-page-container[b-vt0xoi8bqv] {
        flex-direction: column;
    }

    .legal-nav-panel[b-vt0xoi8bqv] {
        width: 100%;
        min-width: 100%;
        position: relative;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .nav-links[b-vt0xoi8bqv] {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        padding: 0;
    }

    .nav-link[b-vt0xoi8bqv] {
        flex: 1;
        min-width: 120px;
        justify-content: center;
        padding: 12px 16px;
        border-bottom: none;
        border-right: 1px solid #e0e0e0;
    }

    .nav-link:last-child[b-vt0xoi8bqv] {
        border-right: none;
    }

    .nav-link.active[b-vt0xoi8bqv]::before {
        width: 100%;
        height: 3px;
        top: auto;
        bottom: 0;
        left: 0;
        border-radius: 4px 4px 0 0;
    }

    .nav-footer[b-vt0xoi8bqv] {
        display: none;
    }

    .legal-main-content[b-vt0xoi8bqv] {
        padding: 24px 16px;
    }

    .contact-header h1[b-vt0xoi8bqv] {
        font-size: 1.75rem;
    }

    .contact-form-card[b-vt0xoi8bqv] {
        padding: 24px;
    }

    .form-row[b-vt0xoi8bqv] {
        flex-direction: column;
        gap: 0;
    }

    .form-field[b-vt0xoi8bqv] {
        margin-bottom: 16px;
    }
}
/* /Pages/FAQs.razor.rz.scp.css */
/* Shared Legal Page Layout */
.legal-page-container[b-i8qkm1flix] {
    display: flex;
    min-height: calc(100vh - 120px);
    background: #f8f9fa;
}

/* Left Navigation Panel */
.legal-nav-panel[b-i8qkm1flix] {
    width: 280px;
    min-width: 280px;
    background: #ffffff;
    color: #333;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: fit-content;
    max-height: 100vh;
    border-right: 1px solid #e0e0e0;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.04);
}

.nav-header[b-i8qkm1flix] {
    padding: 0 24px 20px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0;
}

.nav-header .nav-icon[b-i8qkm1flix] {
    color: var(--mud-palette-primary, #1a237e);
    margin-bottom: 8px;
}

.nav-header h3[b-i8qkm1flix] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
}

.nav-links[b-i8qkm1flix] {
    flex: 1;
    padding: 0;
}

.nav-link[b-i8qkm1flix] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    color: #555;
    text-decoration: none;
    border-radius: 0;
    margin-bottom: 0;
    transition: all 0.2s ease;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.nav-link:last-child[b-i8qkm1flix] {
    border-bottom: none;
}

.nav-link:hover[b-i8qkm1flix] {
    background: #f5f5f5;
    color: var(--mud-palette-primary, #1a237e);
}

.nav-link:hover .mud-icon-root[b-i8qkm1flix] {
    color: var(--mud-palette-primary, #1a237e) !important;
}

.nav-link .mud-icon-root[b-i8qkm1flix] {
    color: #888 !important;
    transition: color 0.2s ease;
}

.nav-link.active[b-i8qkm1flix] {
    background: #f0f4ff;
    color: var(--mud-palette-primary, #1a237e);
    font-weight: 600;
}

.nav-link.active .mud-icon-root[b-i8qkm1flix] {
    color: var(--mud-palette-primary, #1a237e) !important;
}

.nav-link.active[b-i8qkm1flix]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--mud-palette-primary, #1a237e);
    border-radius: 0 4px 4px 0;
}

.nav-footer[b-i8qkm1flix] {
    padding: 20px 24px;
    border-top: 1px solid #e0e0e0;
    margin-top: auto;
    font-size: 0.75rem;
    color: #888;
    background: #fafafa;
}

.nav-footer p[b-i8qkm1flix] {
    margin: 0 0 4px;
}

.nav-footer .address[b-i8qkm1flix] {
    line-height: 1.4;
}

/* Main Content Area */
.legal-main-content[b-i8qkm1flix] {
    flex: 1;
    padding: 40px 60px;
    max-width: 900px;
}

/* FAQ Page Header */
.faq-header[b-i8qkm1flix] {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header .header-badge[b-i8qkm1flix] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.faq-header h1[b-i8qkm1flix] {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
}

.faq-header p[b-i8qkm1flix] {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Content */
.faq-content[b-i8qkm1flix] {
    margin-bottom: 40px;
}

.faq-panels[b-i8qkm1flix] {
    background: transparent !important;
}

[b-i8qkm1flix] .faq-panels .mud-expand-panel {
    margin-bottom: 12px;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    background: white !important;
    overflow: hidden;
}

[b-i8qkm1flix] .faq-panels .mud-expand-panel-header {
    padding: 20px 24px;
    font-weight: 500;
    font-size: 1rem;
}

[b-i8qkm1flix] .faq-panels .mud-expand-panel-content {
    padding: 0 24px 20px;
}

[b-i8qkm1flix] .faq-panels .mud-expand-panel-content p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

[b-i8qkm1flix] .faq-panels .mud-expand-panel-content a {
    color: #1a237e;
    text-decoration: none;
    font-weight: 500;
}

[b-i8qkm1flix] .faq-panels .mud-expand-panel-content a:hover {
    text-decoration: underline;
}

/* Contact CTA */
.faq-contact-cta[b-i8qkm1flix] {
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-content[b-i8qkm1flix] {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-content .mud-icon-root[b-i8qkm1flix] {
    color: #1a237e;
}

.cta-content h3[b-i8qkm1flix] {
    margin: 0 0 4px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
}

.cta-content p[b-i8qkm1flix] {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .legal-main-content[b-i8qkm1flix] {
        padding: 32px 40px;
    }
}

@media (max-width: 768px) {
    .legal-page-container[b-i8qkm1flix] {
        flex-direction: column;
    }

    .legal-nav-panel[b-i8qkm1flix] {
        width: 100%;
        min-width: 100%;
        position: relative;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .nav-links[b-i8qkm1flix] {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        padding: 0;
    }

    .nav-link[b-i8qkm1flix] {
        flex: 1;
        min-width: 120px;
        justify-content: center;
        padding: 12px 16px;
        border-bottom: none;
        border-right: 1px solid #e0e0e0;
    }

    .nav-link:last-child[b-i8qkm1flix] {
        border-right: none;
    }

    .nav-link.active[b-i8qkm1flix]::before {
        width: 100%;
        height: 3px;
        top: auto;
        bottom: 0;
        left: 0;
        border-radius: 4px 4px 0 0;
    }

    .nav-footer[b-i8qkm1flix] {
        display: none;
    }

    .legal-main-content[b-i8qkm1flix] {
        padding: 24px 16px;
    }

    .faq-header h1[b-i8qkm1flix] {
        font-size: 1.75rem;
    }

    .faq-contact-cta[b-i8qkm1flix] {
        flex-direction: column;
        text-align: center;
    }

    .cta-content[b-i8qkm1flix] {
        flex-direction: column;
    }
}
/* /Pages/Home.razor.rz.scp.css */
/* Home.razor.css - Component-scoped styles */

/* ===========================================
   Form Labels & Text Styles
   =========================================== */

.form-label[b-gh0h3arxj4] {
    color: #5A6C7D;
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 2px;
}

.text-secondary[b-gh0h3arxj4] {
    color: #5A6C7D;
    font-size: 13px;
}

.text-muted[b-gh0h3arxj4] {
    color: #A8B4C0;
    font-size: 12px;
    white-space: nowrap;
}

.text-slider-label[b-gh0h3arxj4] {
    color: #5A6C7D;
}

.text-truncate[b-gh0h3arxj4] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-truncate-block[b-gh0h3arxj4] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    display: block;
}

/* ===========================================
   Layout Containers
   =========================================== */

.flex-between[b-gh0h3arxj4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-between-start[b-gh0h3arxj4] {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 8px;
}

.flex-between-flex-start[b-gh0h3arxj4] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 2px;
}

.flex-center[b-gh0h3arxj4] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flex-center-gap-12[b-gh0h3arxj4] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.flex-shrink-gap[b-gh0h3arxj4] {
    flex-shrink: 0;
    display: flex;
    gap: 4px;
}

.flex-wrap-gap[b-gh0h3arxj4] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.flex-1[b-gh0h3arxj4] {
    flex: 1;
}

.flex-end[b-gh0h3arxj4] {
    display: flex;
    align-items: end;
}

.nowrap-ml-16[b-gh0h3arxj4] {
    white-space: nowrap;
    margin-left: 16px;
}

.nowrap-ml-8[b-gh0h3arxj4] {
    white-space: nowrap;
    margin-left: 8px;
}

/* ===========================================
   Venue Card Elements
   =========================================== */

.venue-image-container[b-gh0h3arxj4] {
    width: 100%;
    height: 220px;
    background-color: #f5f5f5;
}

.venue-image[b-gh0h3arxj4] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.venue-image-rounded[b-gh0h3arxj4] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    cursor: pointer;
}

.venue-name-truncate[b-gh0h3arxj4] {
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}

.venue-types-container[b-gh0h3arxj4] {
    margin-top: 4px;
    margin-bottom: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.venue-type-chip[b-gh0h3arxj4] {
    font-size: 11px;
}

.venue-rating-container[b-gh0h3arxj4] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
}

.venue-capacity-text[b-gh0h3arxj4] {
    color: #5A6C7D;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-height: 20px;
}

.venue-packages-container[b-gh0h3arxj4] {
    min-height: 28px;
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.venue-contact-text[b-gh0h3arxj4] {
    color: #5A6C7D;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-height: 20px;
}

.venue-hours-text[b-gh0h3arxj4] {
    color: #5A6C7D;
    margin-top: 4px;
}

/* ===========================================
   Interactive Elements
   =========================================== */

.clickable-chip[b-gh0h3arxj4] {
    cursor: pointer;
    padding: 4px 8px;
    height: auto;
}

.icon-inline[b-gh0h3arxj4] {
    vertical-align: middle;
}

.link-primary[b-gh0h3arxj4] {
    color: #0071c1;
    text-decoration: none;
}

.contact-details-btn[b-gh0h3arxj4] {
    margin-top: 4px;
    padding: 4px 8px;
    font-size: 12px;
}

.separator-dot[b-gh0h3arxj4] {
    margin: 0 8px;
}

/* ===========================================
   Expansion Panel & AI Search
   =========================================== */

.ai-expansion-panel[b-gh0h3arxj4] {
    background-color: transparent;
    box-shadow: none;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
}

.ai-expansion-title[b-gh0h3arxj4] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.ai-expansion-title-text[b-gh0h3arxj4] {
    color: #5A6C7D;
    font-weight: 500;
}

.ai-expansion-content[b-gh0h3arxj4] {
    padding: 16px;
}

.ai-label-text[b-gh0h3arxj4] {
    color: #5A6C7D;
    font-weight: 500;
    font-size: 13px;
    flex: 1;
}

/* ===========================================
   Carousel
   =========================================== */

.venue-carousel-container[b-gh0h3arxj4] {
    height: 220px;
    padding: 0 8px;
}

/* ===========================================
   Miscellaneous
   =========================================== */

.api-health-margin[b-gh0h3arxj4] {
    margin-bottom: 16px;
}

.expansion-panels-transparent[b-gh0h3arxj4] {
    background-color: transparent;
}
/* /Pages/MyBookings.razor.rz.scp.css */
.booking-card[b-vjnbj1hq9y] {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.booking-card:hover[b-vjnbj1hq9y] {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}
/* /Pages/PrivacyPolicy.razor.rz.scp.css */
/* Shared Legal Page Layout */
.legal-page-container[b-d2cqquj92q] {
    display: flex;
    min-height: calc(100vh - 120px);
    background: #f8f9fa;
}

/* Left Navigation Panel */
.legal-nav-panel[b-d2cqquj92q] {
    width: 280px;
    min-width: 280px;
    background: #ffffff;
    color: #333;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: fit-content;
    max-height: 100vh;
    border-right: 1px solid #e0e0e0;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.04);
}

.nav-header[b-d2cqquj92q] {
    padding: 0 24px 20px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0;
}

.nav-header .nav-icon[b-d2cqquj92q] {
    color: var(--mud-palette-primary, #1a237e);
    margin-bottom: 8px;
}

.nav-header h3[b-d2cqquj92q] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
}

.nav-links[b-d2cqquj92q] {
    flex: 1;
    padding: 0;
}

.nav-link[b-d2cqquj92q] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    color: #555;
    text-decoration: none;
    border-radius: 0;
    margin-bottom: 0;
    transition: all 0.2s ease;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.nav-link:last-child[b-d2cqquj92q] {
    border-bottom: none;
}

.nav-link:hover[b-d2cqquj92q] {
    background: #f5f5f5;
    color: var(--mud-palette-primary, #1a237e);
}

.nav-link:hover .mud-icon-root[b-d2cqquj92q] {
    color: var(--mud-palette-primary, #1a237e) !important;
}

.nav-link .mud-icon-root[b-d2cqquj92q] {
    color: #888 !important;
    transition: color 0.2s ease;
}

.nav-link.active[b-d2cqquj92q] {
    background: #f0f4ff;
    color: var(--mud-palette-primary, #1a237e);
    font-weight: 600;
}

.nav-link.active .mud-icon-root[b-d2cqquj92q] {
    color: var(--mud-palette-primary, #1a237e) !important;
}

.nav-link.active[b-d2cqquj92q]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--mud-palette-primary, #1a237e);
    border-radius: 0 4px 4px 0;
}

.nav-footer[b-d2cqquj92q] {
    padding: 20px 24px;
    border-top: 1px solid #e0e0e0;
    margin-top: auto;
    font-size: 0.75rem;
    color: #888;
    background: #fafafa;
}

.nav-footer p[b-d2cqquj92q] {
    margin: 0 0 4px;
}

.nav-footer .address[b-d2cqquj92q] {
    line-height: 1.4;
}

/* Main Content Area */
.legal-main-content[b-d2cqquj92q] {
    flex: 1;
    padding: 40px 60px;
    max-width: 900px;
}

/* Policy Page Header */
.policy-header[b-d2cqquj92q] {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 2px solid #e0e0e0;
}

.policy-header .header-badge[b-d2cqquj92q] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.policy-header h1[b-d2cqquj92q] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.policy-header .subtitle[b-d2cqquj92q] {
    font-size: 1.1rem;
    color: #1a237e;
    font-weight: 500;
    margin: 0 0 4px;
}

.policy-header .address-line[b-d2cqquj92q] {
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 12px;
}

.policy-header .last-updated[b-d2cqquj92q] {
    display: inline-block;
    background: #e8eaf6;
    color: #1a237e;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
}

/* Table of Contents */
.toc-card[b-d2cqquj92q] {
    background: white;
    border-radius: 12px;
    padding: 24px 32px;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border-left: 4px solid #1a237e;
}

.toc-card h3[b-d2cqquj92q] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a237e;
    margin: 0 0 16px;
}

.toc-list[b-d2cqquj92q] {
    margin: 0;
    padding-left: 20px;
    columns: 2;
    column-gap: 40px;
}

.toc-list li[b-d2cqquj92q] {
    margin-bottom: 8px;
    break-inside: avoid;
}

.toc-list a[b-d2cqquj92q] {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.toc-list a:hover[b-d2cqquj92q] {
    color: #1a237e;
    text-decoration: underline;
}

/* Policy Sections */
.policy-section[b-d2cqquj92q] {
    background: white;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.section-header[b-d2cqquj92q] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eaf6 100%);
    border-bottom: 1px solid #e0e0e0;
}

.section-number[b-d2cqquj92q] {
    width: 36px;
    height: 36px;
    background: #1a237e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.section-header h2[b-d2cqquj92q] {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 600;
    color: #1a1a2e;
}

.section-content[b-d2cqquj92q] {
    padding: 28px;
}

.section-content h3[b-d2cqquj92q] {
    font-size: 1rem;
    font-weight: 600;
    color: #1a237e;
    margin: 24px 0 12px;
}

.section-content h3:first-child[b-d2cqquj92q] {
    margin-top: 0;
}

.section-content p[b-d2cqquj92q] {
    color: #444;
    line-height: 1.7;
    margin: 0 0 16px;
}

.section-content p:last-child[b-d2cqquj92q] {
    margin-bottom: 0;
}

.section-content ul[b-d2cqquj92q] {
    margin: 12px 0;
    padding-left: 24px;
}

.section-content ul li[b-d2cqquj92q] {
    color: #444;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Contact Box in Policy */
.contact-box[b-d2cqquj92q] {
    background: #f5f7fa;
    border-radius: 8px;
    padding: 20px 24px;
    border-left: 4px solid #1a237e;
}

.contact-box p[b-d2cqquj92q] {
    margin: 0 0 8px;
}

.contact-box p:last-child[b-d2cqquj92q] {
    margin-bottom: 0;
}

.contact-box a[b-d2cqquj92q] {
    color: #1a237e;
    text-decoration: none;
}

.contact-box a:hover[b-d2cqquj92q] {
    text-decoration: underline;
}

.contact-action[b-d2cqquj92q] {
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .legal-main-content[b-d2cqquj92q] {
        padding: 32px 40px;
    }

    .toc-list[b-d2cqquj92q] {
        columns: 1;
    }
}

@media (max-width: 768px) {
    .legal-page-container[b-d2cqquj92q] {
        flex-direction: column;
    }

    .legal-nav-panel[b-d2cqquj92q] {
        width: 100%;
        min-width: 100%;
        position: relative;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .nav-links[b-d2cqquj92q] {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        padding: 0;
    }

    .nav-link[b-d2cqquj92q] {
        flex: 1;
        min-width: 120px;
        justify-content: center;
        padding: 12px 16px;
        border-bottom: none;
        border-right: 1px solid #e0e0e0;
    }

    .nav-link:last-child[b-d2cqquj92q] {
        border-right: none;
    }

    .nav-link.active[b-d2cqquj92q]::before {
        width: 100%;
        height: 3px;
        top: auto;
        bottom: 0;
        left: 0;
        border-radius: 4px 4px 0 0;
    }

    .nav-footer[b-d2cqquj92q] {
        display: none;
    }

    .legal-main-content[b-d2cqquj92q] {
        padding: 24px 16px;
    }

    .policy-header h1[b-d2cqquj92q] {
        font-size: 1.75rem;
    }

    .section-content[b-d2cqquj92q] {
        padding: 20px;
    }

    .section-header[b-d2cqquj92q] {
        padding: 16px 20px;
    }
}
/* /Pages/VenueDetail.razor.rz.scp.css */
/* Venue Detail Layout */
.venue-layout[b-l9re2jfg2r] {
    display: flex;
    gap: 0;
    width: 100%;
}

.venue-left-section[b-l9re2jfg2r] {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 24px;
}

.venue-separator[b-l9re2jfg2r] {
    width: 1px;
    background: linear-gradient(to bottom, transparent, #d0d0d0 10%, #d0d0d0 90%, transparent);
    align-self: stretch;
    min-height: 400px;
    flex-shrink: 0;
}

.venue-right-section[b-l9re2jfg2r] {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 24px;
}

/* Opening Hours Section */
.opening-hours-section[b-l9re2jfg2r] {
    padding-top: 16px;
}

/* Offering Selection Cards */
.offering-radio-group[b-l9re2jfg2r] {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.offering-radio-group.mud-radio-group[b-l9re2jfg2r] {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

[b-l9re2jfg2r] .offering-radio-group {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.offering-card[b-l9re2jfg2r] {
    transition: all 0.2s ease;
    width: 100% !important;
    box-sizing: border-box;
}

.offering-card:hover[b-l9re2jfg2r] {
    border-color: var(--mud-palette-primary) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.offering-card.selected[b-l9re2jfg2r] {
    background: rgba(255, 167, 38, 0.05);
}

/* Responsive - Mobile */
@media (max-width: 960px) {
    .venue-layout[b-l9re2jfg2r] {
        flex-direction: column;
        gap: 24px;
    }

    .venue-left-section[b-l9re2jfg2r] {
        flex: 1;
        max-width: 100%;
        padding-right: 0;
    }

    .venue-separator[b-l9re2jfg2r] {
        display: none;
    }

    .venue-right-section[b-l9re2jfg2r] {
        flex: 1;
        max-width: 100%;
        padding-left: 0;
    }

    .offering-radio-group[b-l9re2jfg2r],
    .offering-radio-group.mud-radio-group[b-l9re2jfg2r] {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .offering-card[b-l9re2jfg2r] {
        width: 100% !important;
    }
}
