/* _content/ChampionshipHousing/Components/Admin/Listings/AdminViewListings.razor.rz.scp.css */
/* Full Screen Loading Overlay */
.loading-overlay-fullscreen[b-ktdvru3yod] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(3px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn-b-ktdvru3yod 0.3s ease-in-out;
}

.loading-content[b-ktdvru3yod] {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: scaleIn-b-ktdvru3yod 0.4s ease-out;
}

.loading-spinner[b-ktdvru3yod] {
    width: 4rem;
    height: 4rem;
    border-width: 0.4em;
}

.loading-content h4[b-ktdvru3yod] {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.loading-content p[b-ktdvru3yod] {
    margin-bottom: 0;
    font-size: 0.95rem;
}

@keyframes fadeIn-b-ktdvru3yod {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn-b-ktdvru3yod {
    from { 
        opacity: 0;
        transform: scale(0.9) translateY(10px);
    }
    to { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Spin animation for refresh icon */
.spin[b-ktdvru3yod] {
    animation: spin-b-ktdvru3yod 1s linear infinite;
}

@keyframes spin-b-ktdvru3yod {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Button spacing improvements */
.btn-group-spaced .btn[b-ktdvru3yod] {
    margin-right: 0.5rem;
}

.btn-group-spaced .btn:last-child[b-ktdvru3yod] {
    margin-right: 0;
}

/* Accessibility improvements */
@media (prefers-contrast: high) {
    .loading-overlay-fullscreen[b-ktdvru3yod] {
        background: rgba(0, 0, 0, 0.9);
    }
    
    .loading-content[b-ktdvru3yod] {
        background: white;
        border: 3px solid black;
    }
    
    .loading-spinner[b-ktdvru3yod] {
        border-color: black transparent black transparent;
    }
}

@media (prefers-reduced-motion: reduce) {
    .loading-overlay-fullscreen[b-ktdvru3yod],
    .loading-content[b-ktdvru3yod],
    .loading-spinner[b-ktdvru3yod],
    .spin[b-ktdvru3yod] {
        animation: none !important;
    }
}
/* _content/ChampionshipHousing/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-fvuj5grfy3] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--usga-silver-light);
}

.page.hide-sidebar[b-fvuj5grfy3] {
    flex-direction: column;
}

.page.hide-sidebar main[b-fvuj5grfy3] {
    width: 100% !important;
    margin-left: 0 !important;
}

.page.hide-sidebar .main-header[b-fvuj5grfy3],
.page.hide-sidebar .top-row[b-fvuj5grfy3],
.page.hide-sidebar article[b-fvuj5grfy3] {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

main[b-fvuj5grfy3] {
    flex: 1;
    background-color: var(--usga-silver-light);
}

.sidebar[b-fvuj5grfy3] {
    background: linear-gradient(180deg, var(--usga-blue) 0%, var(--usga-blue-dark) 70%, #001122 100%);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.sidebar[b-fvuj5grfy3]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,215,0,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,215,0,0.1)"/></svg>') repeat;
    pointer-events: none;
}

/* Custom Offcanvas Styles */
.custom-offcanvas[b-fvuj5grfy3] {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1045;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, var(--usga-white) 0%, var(--usga-white) 100%);
    color: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    /*overflow-y: auto;*/
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.custom-offcanvas.show[b-fvuj5grfy3] {
    transform: translateX(0);
}

.offcanvas-backdrop[b-fvuj5grfy3] {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.offcanvas-backdrop.show[b-fvuj5grfy3] {
    opacity: 1;
    visibility: visible;
}

.offcanvas-header[b-fvuj5grfy3] {
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-close[b-fvuj5grfy3] {
    background: none;
    border: none;
    color: black;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: background-color 0.2s ease;
}

.btn-close:hover[b-fvuj5grfy3] {
    background-color: rgba(255, 255, 255, 0.1);
}

.offcanvas-body[b-fvuj5grfy3] {
    padding: 0;
    flex: 1;
}

/* New Main Header Styles */
.main-header[b-fvuj5grfy3] {
    background: linear-gradient(135deg, var(--usga-blue) 0%, var(--usga-blue-light) 100%);
    border-bottom: 3px solid var(--usga-gold);
    padding: 1rem 0;
    box-shadow: 0 2px 12px rgba(0, 54, 95, 0.15);
    position: relative;
    z-index: 1001;
}

.header-brand[b-fvuj5grfy3] {
    text-decoration: none;
    color: var(--usga-white);
    transition: all 0.3s ease;
}

.header-brand:hover[b-fvuj5grfy3] {
    color: var(--usga-gold);
    text-decoration: none;
    transform: translateY(-1px);
}

.header-brand h1[b-fvuj5grfy3] {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: 0;
}

.header-actions[b-fvuj5grfy3] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-row[b-fvuj5grfy3] {
    background: var(--usga-white);
    border-bottom: 1px solid var(--usga-silver);
    justify-content: space-between;
    height: 3.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1000;
}

.top-row[b-fvuj5grfy3]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--usga-blue) 50%, transparent 100%);
}

/* Style for the USGA logo */
.top-row img[b-fvuj5grfy3] {
    height: calc(3.5rem - 1rem);
    max-height: 2.5rem;
    width: auto;
    object-fit: contain;
    margin-right: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.top-row img:hover[b-fvuj5grfy3] {
    transform: scale(1.05);
}

.top-row[b-fvuj5grfy3]  a, .top-row[b-fvuj5grfy3]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
    color: var(--usga-blue);
    font-weight: 600;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.top-row[b-fvuj5grfy3]  a:hover, .top-row[b-fvuj5grfy3]  .btn-link:hover {
    color: var(--usga-blue-light);
    text-decoration: none;
}

.top-row[b-fvuj5grfy3]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Header container styles */
.header-container[b-fvuj5grfy3] {
  background: var(--usga-white);
}

/* Make header sticky on desktop */
@media (min-width: 641px) {
    .header-container[b-fvuj5grfy3] {
position: sticky;
 top: 0;
        z-index: 1020;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}
    
    /* Add padding to main content to account for sticky header */
 main[b-fvuj5grfy3] {
        padding-top: 0;
    }
}

/* Mobile header styles */
.mobile-header[b-fvuj5grfy3] {
    /* Mobile-specific header container */
}

.mobile-header-row[b-fvuj5grfy3] {
    /* First row on mobile: hamburger menu and logo */
    justify-content: flex-start;
}

.mobile-title-row[b-fvuj5grfy3] {
    /* Second row on mobile: title text only */
    padding: 0.25rem 0 0.5rem 0;
    margin-left: calc(2.5rem + 0.5rem); /* Align with logo: button width + margin */
}

.mobile-title-row h5[b-fvuj5grfy3] {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: left;
}

.mobile-separator[b-fvuj5grfy3] {
    border-top: 1px solid rgba(0, 54, 95, 0.1);
    margin: 0;
}

/* Content area improvements */
.content[b-fvuj5grfy3] {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    background-color: var(--usga-silver-light);
    min-height: calc(100vh - 8rem); /* Adjusted for new header */
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .custom-offcanvas[b-fvuj5grfy3] {
        width: 280px;
    }

    .main-header[b-fvuj5grfy3] {
        padding: 0.75rem 0;
    }

    .header-brand h1[b-fvuj5grfy3] {
        font-size: 1.25rem;
        letter-spacing: 0.5px;
    }

    .top-row[b-fvuj5grfy3] {
        justify-content: space-between;
        padding: 0 1rem;
    }

    .top-row[b-fvuj5grfy3]  a, .top-row[b-fvuj5grfy3]  .btn-link {
        margin-left: 0;
        font-size: 0.8rem;
    }
    
    /* Adjust logo size for mobile */
    .top-row img[b-fvuj5grfy3] {
        height: calc(3.5rem - 0.5rem);
        max-height: 3rem;
    }

    .content[b-fvuj5grfy3] {
        padding-top: var(--spacing-lg);
        padding-bottom: var(--spacing-lg);
        min-height: calc(100vh - 7rem);
    }

    /* Mobile header adjustments */
    .mobile-header-row img[b-fvuj5grfy3] {
        height: 30px !important;
        width: auto;
    }
    
    .mobile-title-row h5[b-fvuj5grfy3] {
        font-size: 1rem;
    }

    /* Remove default button padding for mobile layout */
    .mobile-header-row .btn-link[b-fvuj5grfy3] {
        padding: 0.25rem 0.5rem;
        width: 2.5rem; /* Fixed width for consistent alignment */
    }

    /* Adjust margin for smaller screens */
    .mobile-title-row[b-fvuj5grfy3] {
        margin-left: calc(2.5rem + 0.5rem); /* Match button width + margin */
    }
}

@media (min-width: 641px) {
    .page[b-fvuj5grfy3] {
        flex-direction: row;
    }

    .page.hide-sidebar[b-fvuj5grfy3] {
        flex-direction: column;
    }

    .sidebar[b-fvuj5grfy3] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .main-header[b-fvuj5grfy3] {
        position: relative;
        z-index: 1001;
    }

    .top-row[b-fvuj5grfy3] {
        position: relative;
        z-index: 999;
    }

    .top-row.auth[b-fvuj5grfy3]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .main-header .container-fluid[b-fvuj5grfy3],
    .top-row[b-fvuj5grfy3], 
    article[b-fvuj5grfy3] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    /* Add subtle animation for larger screens */
    main[b-fvuj5grfy3] {
        transition: margin-left 0.3s ease;
    }
}

/* Enhanced error UI with USGA styling */
#blazor-error-ui[b-fvuj5grfy3] {
    background: linear-gradient(135deg, var(--usga-red) 0%, #c82333 100%);
    bottom: 0;
    box-shadow: 0 -4px 20px rgba(218, 26, 49, 0.3);
    display: none;
    left: 0;
    padding: 1rem 1.25rem 1rem 3.7rem;
    position: fixed;
    width: 100%;
    z-index: 2000;
    color: var(--usga-white);
    font-family: var(--font-primary);
    font-weight: 600;
    border-top: 3px solid var(--usga-gold);
}

#blazor-error-ui[b-fvuj5grfy3]::before {
    content: '?';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--usga-gold);
}

#blazor-error-ui .dismiss[b-fvuj5grfy3] {
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--usga-white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

#blazor-error-ui .dismiss:hover[b-fvuj5grfy3] {
    background: rgba(255, 255, 255, 0.3);
}

/* Loading indicator styling */
.loading-overlay[b-fvuj5grfy3] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 54, 95, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
}

.loading-overlay .spinner-border[b-fvuj5grfy3] {
    width: 3rem;
    height: 3rem;
    color: var(--usga-blue);
}

/* Scroll behavior improvements */
html[b-fvuj5grfy3] {
    scroll-behavior: smooth;
}

/* Focus improvements for accessibility */
*:focus[b-fvuj5grfy3] {
    outline: 2px solid var(--usga-red);
    outline-offset: 0px;
}

/* Print styles */
@media print {
    .sidebar[b-fvuj5grfy3], .main-header[b-fvuj5grfy3], .top-row[b-fvuj5grfy3], #blazor-error-ui[b-fvuj5grfy3], .custom-offcanvas[b-fvuj5grfy3], .offcanvas-backdrop[b-fvuj5grfy3] {
        display: none !important;
    }
    
    .page[b-fvuj5grfy3] {
        flex-direction: column;
    }
    
    main[b-fvuj5grfy3] {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .main-header[b-fvuj5grfy3] {
        background: var(--usga-blue);
        border-bottom: 3px solid var(--usga-gold);
    }
    
    .top-row[b-fvuj5grfy3] {
        background: var(--usga-white);
        border-bottom: 2px solid var(--usga-blue);
    }
    
    .custom-offcanvas[b-fvuj5grfy3] {
        background: #000000;
        border-right: 2px solid #ffffff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *[b-fvuj5grfy3] {
        transition: none !important;
        animation: none !important;
    }
}

/* Prevent page scroll when menu is open */
body.menu-open[b-fvuj5grfy3] {
    overflow: hidden;
}

/* Footer Section Styles */
.footer-section[b-fvuj5grfy3] {
    margin-top: 3rem;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-separator[b-fvuj5grfy3] {
    width: 100%;
    height: 5px;
    background-color: #00365F; /* USGA Blue */
    margin: 0;
    padding: 0;
}

.footer-content[b-fvuj5grfy3] {
    background-color: var(--usga-white);
    padding: 2rem 1rem;
    color: #333333;
    width: 100%;
}

.footer-content .row[b-fvuj5grfy3] {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links[b-fvuj5grfy3] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-link[b-fvuj5grfy3] {
    color: var(--usga-blue);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-link:hover[b-fvuj5grfy3] {
    color: var(--usga-blue-light);
    text-decoration: underline;
}

.footer-link:focus[b-fvuj5grfy3] {
    outline: 2px solid var(--usga-blue);
    outline-offset: 2px;
    border-radius: 2px;
}

.footer-divider[b-fvuj5grfy3] {
    color: var(--usga-silver-dark);
    font-size: 0.95rem;
    margin: 0 0.5rem;
}

.footer-content p[b-fvuj5grfy3] {
    margin: 0;
    font-family: var(--font-primary);
}

.footer-content .text-muted[b-fvuj5grfy3] {
    color: var(--usga-silver-dark) !important;
}

/* Responsive footer adjustments */
@media (max-width: 576px) {
    .footer-section[b-fvuj5grfy3] {
        margin-top: 2rem;
    }
    
    .footer-content[b-fvuj5grfy3] {
        padding: 1.5rem 1rem;
    }
    
    .footer-links[b-fvuj5grfy3] {
        gap: 0.75rem;
    }
    
    .footer-link[b-fvuj5grfy3] {
        font-size: 0.85rem;
    }
    
    .footer-divider[b-fvuj5grfy3] {
        font-size: 0.85rem;
        margin: 0 0.25rem;
    }
    
    .footer-content p[b-fvuj5grfy3] {
        font-size: 0.9rem;
    }
}

/* Floating FAQ Button Styles */
.floating-faq-button[b-fvuj5grfy3] {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--usga-blue), var(--usga-blue-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 54, 95, 0.3);
    z-index: 1030;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-faq-button i[b-fvuj5grfy3] {
    font-size: 28px;
    color: white;
}

.floating-faq-button:hover[b-fvuj5grfy3] {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 54, 95, 0.4);
    background: linear-gradient(135deg, var(--usga-blue-light), var(--usga-blue));
    text-decoration: none;
}

.floating-faq-button:active[b-fvuj5grfy3] {
    transform: translateY(-2px);
}

.floating-faq-button:focus[b-fvuj5grfy3] {
    outline: 3px solid var(--usga-gold);
    outline-offset: 3px;
}

/* Responsive adjustments for floating FAQ button */
@media (max-width: 768px) {
    .floating-faq-button[b-fvuj5grfy3] {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-faq-button i[b-fvuj5grfy3] {
        font-size: 24px;
    }
}

/* Accessibility: Ensure visible in high contrast mode */
@media (prefers-contrast: high) {
    .floating-faq-button[b-fvuj5grfy3] {
        border: 2px solid white;
    }
}

/* Print styles - hide footer and FAQ button when printing */
@media print {
    .footer-section[b-fvuj5grfy3],
    .floating-faq-button[b-fvuj5grfy3] {
        display: none !important;
    }
}
/* _content/ChampionshipHousing/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-mduvfk4z0k] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-mduvfk4z0k] {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Logo section styling */
.logo-section[b-mduvfk4z0k] {
    padding: 0.75rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0.5rem;
    text-align: left;
}

.nav-logo[b-mduvfk4z0k] {
    max-width: 60px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
    display: block;
}

.nav-logo:hover[b-mduvfk4z0k] {
    opacity: 1;
}

.nav-item[b-mduvfk4z0k] {
    font-size: 0.9rem;
    padding-bottom: 0.25rem;
    border-radius: var(--border-radius-md);
    margin: 0.25rem 0.5rem;
    transition: all 0.3s ease;
}

    .nav-item:first-of-type[b-mduvfk4z0k] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-mduvfk4z0k] {
        padding-bottom: 1rem;
    }

    .nav-item[b-mduvfk4z0k]  .nav-link {
        color: var(--usga-black);
        background: none;
        border: none;
        border-radius: var(--border-radius-md);
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 1rem;
        width: 100%;
        padding: 0.5rem 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 0.8rem;
    }

    /* Style for Bootstrap Icons in navigation */
    .nav-item[b-mduvfk4z0k]  .nav-link i {
        width: 1.25rem;
        height: 1.25rem;
        margin-right: 0.75rem;
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: inherit;
        background-color:transparent !important;
    }

    .nav-item[b-mduvfk4z0k]  a.active, .nav-item[b-mduvfk4z0k]  a.active i {
        background-color: var(--usga-silver-light);
        color: var(--usga-blue) !important;
        /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
        
        font-weight: 600;
    }

.nav-item[b-mduvfk4z0k]  .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--usga-black);
    transform: translateX(4px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-left: 2px solid var(--usga-silver-light);
}

.nav-item[b-mduvfk4z0k]  .nav-link:focus {
    outline: 2px solid var(--usga-silver-light);
    outline-offset: 2px;
}

.nav-scrollable[b-mduvfk4z0k] {
    display: none;
    background: linear-gradient(180deg, var(--usga-white) 0%, var(--usga-white) 100%);
    height: 100vh;
}

.navbar-toggler:checked ~ .nav-scrollable[b-mduvfk4z0k] {
    display: block;
}

/* Add some visual hierarchy with dividers */
.nav-item:nth-child(3)[b-mduvfk4z0k]::after,
.nav-item:nth-child(6)[b-mduvfk4z0k]::after,
.nav-item:nth-child(9)[b-mduvfk4z0k]::after {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    margin: 0.5rem 1rem;
}

@media (max-width: 640.98px) {
    .nav-logo[b-mduvfk4z0k] {
        max-width: 50px;
    }
    
    .logo-section[b-mduvfk4z0k] {
        padding: 0.5rem 0 !important;
    }
}

@media (min-width: 641px) {
    .navbar-toggler[b-mduvfk4z0k] {
        display: none;
    }

    .nav-scrollable[b-mduvfk4z0k] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Remove scrollbar - set fixed height instead */
        height: 100vh;
        overflow: hidden;
    }

    /* If content overflows, allow scrolling but hide scrollbar */
    .nav-scrollable nav[b-mduvfk4z0k] {
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        /* Hide scrollbar for webkit browsers */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .nav-scrollable nav[b-mduvfk4z0k]::-webkit-scrollbar {
        display: none;
    }
}
/* _content/ChampionshipHousing/Components/Pages/Home.razor.rz.scp.css */
/* Mobile font size for the hero header on Home */
@media (max-width: 641px) {
    .header-light[b-pbbvcbvowx] {
        font-size: 2.4rem;
    }
}
/* _content/ChampionshipHousing/Components/Shared/AmenitiesSelector.razor.rz.scp.css */
/* AmenitiesSelector Component Responsive Styles */

/* Default grid layout - inherit from global styles (acts for small tablets too) */
.amenities-grid[b-ye8tv14npq] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

/* Tablet (?768px) - allow growth but not more than available; still fluid until desktop */
@media (min-width: 768px) {
    .amenities-grid[b-ye8tv14npq] {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
}

/* Desktop (?992px) - exactly 5 columns */
@media (min-width: 992px) {
    .amenities-grid[b-ye8tv14npq] {
        grid-template-columns: repeat(5, 1fr); /* 5 icons wide */
        gap: 18px; /* a little more breathing room */
    }
}

/* Large Desktop (?1400px) - still 5 columns, just increase horizontal padding if desired */
@media (min-width: 1400px) {
    .amenities-grid[b-ye8tv14npq] {
        grid-template-columns: repeat(5, 1fr); /* keep 5 per request */
        max-width: 1100px; /* center and prevent over-stretch */
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile devices - 3 columns (previous behavior you adopted) */
@media (max-width: 767.98px) {
    .amenities-grid[b-ye8tv14npq] {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
        margin-top: 10px;
    }
    
    .amenity-card[b-ye8tv14npq] {
        padding: 8px;
        margin: 2px;
        min-height: 100px;
        font-size: 0.85rem;
    }
    
    .material-symbols-outlined[b-ye8tv14npq] {
        font-size: 40px;
        margin-bottom: 4px;
    }
    
    .amenity-icon[b-ye8tv14npq] {
        width: 40px;
        height: 40px;
        margin-bottom: 4px;
    }
}

/* Extra small mobile devices - compact 3-column layout */
@media (max-width: 575.98px) {
    .amenities-grid[b-ye8tv14npq] {
        grid-template-columns: calc((100% - 8px) / 3) calc((100% - 8px) / 3) calc((100% - 8px) / 3);
        gap: 4px;
    }
    
    .amenity-card[b-ye8tv14npq] {
        padding: 4px;
        margin: 0;
        min-height: 80px;
        font-size: 0.7rem;
    }
    
    .material-symbols-outlined[b-ye8tv14npq] {
        font-size: 28px;
    }
    
    .amenity-icon[b-ye8tv14npq] {
        width: 28px;
        height: 28px;
    }
}

/* Ensure proper responsive behavior for form section */
.form-section h2[b-ye8tv14npq] {
    margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
    .form-section h2[b-ye8tv14npq] {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
}
/* _content/ChampionshipHousing/Components/Shared/GlobalNavigationLoader.razor.rz.scp.css */
/* Global Navigation Loading Overlay */
.global-loading-overlay[b-8f3nwzlpgs] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(3px);
    z-index: 99999; /* Higher than the page-specific loading overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    animation: globalFadeIn-b-8f3nwzlpgs 0.2s ease-in-out;
}

.global-loading-content[b-8f3nwzlpgs] {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: globalScaleIn-b-8f3nwzlpgs 0.3s ease-out;
    /* Ensure focus stays within the loading content */
    position: relative;
}

.global-loading-spinner[b-8f3nwzlpgs] {
    width: 3.5rem;
    height: 3.5rem;
    border-width: 0.35em;
    /* Ensure spinner is focusable for screen readers but not tab-navigable */
    outline: none;
}

.global-loading-content h4[b-8f3nwzlpgs] {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.global-loading-content p[b-8f3nwzlpgs] {
    margin-bottom: 0;
    font-size: 0.9rem;
}

@keyframes globalFadeIn-b-8f3nwzlpgs {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes globalScaleIn-b-8f3nwzlpgs {
    from { 
        opacity: 0;
        transform: scale(0.95) translateY(5px);
    }
    to { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* High contrast mode support for accessibility */
@media (prefers-contrast: high) {
    .global-loading-overlay[b-8f3nwzlpgs] {
        background: rgba(0, 0, 0, 0.9);
    }
    
    .global-loading-content[b-8f3nwzlpgs] {
        background: white;
        border: 3px solid black;
    }
    
    .global-loading-spinner[b-8f3nwzlpgs] {
        border-color: black transparent black transparent;
    }
}

/* Reduced motion support for accessibility */
@media (prefers-reduced-motion: reduce) {
    .global-loading-overlay[b-8f3nwzlpgs],
    .global-loading-content[b-8f3nwzlpgs],
    .global-loading-spinner[b-8f3nwzlpgs] {
        animation: none !important;
    }
}
/* _content/ChampionshipHousing/Components/Shared/ListingImageCarousel.razor.rz.scp.css */
/* ListingImageCarousel Component Styles */

.image-carousel-container[b-vfyg576n0z] {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.default-thumbnail[b-vfyg576n0z] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #f0f0f0;
    color: #999;
}

.default-thumbnail i[b-vfyg576n0z] {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.single-image-container[b-vfyg576n0z] {
    position: relative;
    width: 100%;
    height: 100%;
}

.single-image[b-vfyg576n0z] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-carousel[b-vfyg576n0z] {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-content[b-vfyg576n0z] {
    width: 100%;
    height: 100%;
}

.carousel-image[b-vfyg576n0z] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Previous/Next Controls */
.carousel-control-prev[b-vfyg576n0z],
.carousel-control-next[b-vfyg576n0z] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.7); /* More opaque by default */
    border: 2px solid rgba(255, 255, 255, 0.9); /* Brighter white border */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); /* Add shadow for depth */
    opacity: 0.8;
}

.carousel-control-prev:hover[b-vfyg576n0z],
.carousel-control-next:hover[b-vfyg576n0z] {
    background-color: rgba(0, 0, 0, 0.9); /* Even darker on hover */
    border-color: rgba(255, 255, 255, 1); /* Pure white border */
    transform: translateY(-50%) scale(1.15); /* Slightly larger scale */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6); /* Stronger shadow on hover */
}

.carousel-control-prev[b-vfyg576n0z] {
    left: 10px;
}

.carousel-control-next[b-vfyg576n0z] {
    right: 10px;
}

.carousel-control-prev-icon[b-vfyg576n0z],
.carousel-control-next-icon[b-vfyg576n0z] {
    width: 22px; /* Slightly larger icons */
    height: 22px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

.carousel-control-prev-icon[b-vfyg576n0z] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon[b-vfyg576n0z] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Carousel Indicators (Bottom Dots) - Enhanced Contrast */
.carousel-indicators[b-vfyg576n0z] {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 15;
    margin: 0;
    padding: 8px 12px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    width: fit-content; /* Auto-size to fit buttons */
    max-width: 90%; /* Prevent overflow on small screens */
}

.carousel-indicators button[b-vfyg576n0z] {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 1;
    flex-shrink: 0; /* Prevent buttons from shrinking */
}

.carousel-indicators button:hover[b-vfyg576n0z] {
    background-color: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.carousel-indicators button.active[b-vfyg576n0z] {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.15);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5),
                0 0 0 2px rgba(0, 120, 215, 0.5);
}

/* Image Count Badge */
.image-count-badge[b-vfyg576n0z] {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 10;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-control-prev[b-vfyg576n0z],
    .carousel-control-next[b-vfyg576n0z] {
        width: 35px;
        height: 35px;
    }

    .carousel-control-prev-icon[b-vfyg576n0z],
    .carousel-control-next-icon[b-vfyg576n0z] {
        width: 16px;
        height: 16px;
    }

    .carousel-indicators[b-vfyg576n0z] {
        padding: 6px 10px;
        gap: 6px;
    }

    .carousel-indicators button[b-vfyg576n0z] {
        width: 10px;
        height: 10px;
    }

    .image-count-badge[b-vfyg576n0z] {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
}

/* Accessibility - Focus States */
.carousel-control-prev:focus[b-vfyg576n0z],
.carousel-control-next:focus[b-vfyg576n0z],
.carousel-indicators button:focus[b-vfyg576n0z] {
    outline: 2px solid rgba(0, 120, 215, 0.8);
    outline-offset: 2px;
}

/* Loading state */
.carousel-image[loading="lazy"][b-vfyg576n0z] {
    background-color: #f0f0f0;
}
/* _content/ChampionshipHousing/Components/Shared/ListingsGrid.razor.rz.scp.css */
/* Listing ID Link Styling */
.listing-id-link[b-tk5ivmb5r9] {
    font-weight: bold;
    transition: all 0.2s ease;
    padding: 2px 4px;
    border-radius: 4px;
}

.listing-id-link:hover[b-tk5ivmb5r9] {
    background-color: var(--bs-primary-bg-subtle, #e7f1ff);
    text-decoration: underline !important;
    transform: translateY(-1px);
}

.listing-id-link:focus[b-tk5ivmb5r9] {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
    background-color: var(--bs-primary-bg-subtle, #e7f1ff);
}

/* Thumbnail Link Styling */
.thumbnail-link[b-tk5ivmb5r9] {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
}

.thumbnail-link:hover[b-tk5ivmb5r9] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.thumbnail-link:focus[b-tk5ivmb5r9] {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.25);
}

.thumbnail-link:active[b-tk5ivmb5r9] {
    transform: translateY(-1px);
}

/* Mobile Centered Image Styling */
.mobile-centered-image[b-tk5ivmb5r9] {
    display: inline-block;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-centered-image:hover[b-tk5ivmb5r9] {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.mobile-centered-image .listing-thumbnail[b-tk5ivmb5r9] {
    border-radius: 12px;
    overflow: hidden;
}

/* Mobile Header Image Styling */
.mobile-header-image[b-tk5ivmb5r9] {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.mobile-header-image:hover[b-tk5ivmb5r9] {
    transform: none; /* Disable the hover transform for header images */
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.mobile-header-image .listing-thumbnail[b-tk5ivmb5r9] {
    width: 100%;
    height: 100%;
}

.mobile-header-image .thumbnail-image[b-tk5ivmb5r9] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile card header link styling */
.mobile-card-header a[b-tk5ivmb5r9] {
    transition: color 0.2s ease;
}

.mobile-card-header a:hover[b-tk5ivmb5r9] {
    color: var(--bs-primary) !important;
}

/* Ensure consistent link styling across the grid */
.listings-grid-container a[b-tk5ivmb5r9] {
    color: inherit;
}

.listings-grid-container a.text-primary[b-tk5ivmb5r9] {
    color: var(--bs-primary) !important;
}

.listings-grid-container a.text-primary:hover[b-tk5ivmb5r9] {
    color: var(--bs-primary-hover, #0056b3) !important;
}

/* Improve thumbnail hover effect within the link */
.thumbnail-link .listing-thumbnail[b-tk5ivmb5r9] {
    transition: transform 0.2s ease;
}

.thumbnail-link:hover .listing-thumbnail[b-tk5ivmb5r9] {
    transform: scale(1.02);
}

/* Ensure thumbnail images are properly contained */
.thumbnail-link .thumbnail-image[b-tk5ivmb5r9] {
    transition: all 0.2s ease;
}

.thumbnail-link:hover .thumbnail-image[b-tk5ivmb5r9] {
    filter: brightness(1.05);
}

/* Override hover effects for mobile header images */
.mobile-header-image:hover .listing-thumbnail[b-tk5ivmb5r9],
.mobile-header-image:hover .thumbnail-image[b-tk5ivmb5r9] {
    transform: none;
    filter: none;
}

/* Table Horizontal Scrolling */
.table-responsive-container[b-tk5ivmb5r9] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
}

.table-responsive-container[b-tk5ivmb5r9]::-webkit-scrollbar {
    height: 8px;
}

.table-responsive-container[b-tk5ivmb5r9]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.table-responsive-container[b-tk5ivmb5r9]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.table-responsive-container[b-tk5ivmb5r9]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Ensure table maintains minimum width for proper column spacing */
.table-responsive-container .table[b-tk5ivmb5r9] {
    min-width: 800px; /* Adjust based on your table's minimum required width */
    margin-bottom: 0;
}

/* Fullwidth Thumbnail Styling for Placeholders */
.thumbnail-fullwidth img[b-tk5ivmb5r9], .thumbnail-fullwidth[b-tk5ivmb5r9] {
    width: 100% !important;
    height: auto;
    object-fit: contain;
    display: block;
}
