/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-wywxkbnpw3] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-wywxkbnpw3] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
File: SportsMatchMakerBlazor\Components\Layout\NavMenu.razor.css
````````css
/* ══════════════════════════════════════════════════════════════
   SITE LOGO — top bar
   ══════════════════════════════════════════════════════════════ */
.smm-logo-link[b-f6i1wci6tc] {
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.smm-logo-link:hover[b-f6i1wci6tc] {
    opacity: 0.85;
}

.smm-logo[b-f6i1wci6tc] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    line-height: 1;
}

/* Spinning ball icon */
.smm-logo__icon[b-f6i1wci6tc] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #198754 0%, #0d6efd 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(25, 135, 84, 0.40);
}

/* Text lockup */
.smm-logo__text[b-f6i1wci6tc] {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.smm-logo__sports[b-f6i1wci6tc] {
    color: #198754;   /* Bootstrap $green */
}

.smm-logo__match[b-f6i1wci6tc] {
    color: #0d6efd;   /* Bootstrap $blue  */
}

.smm-logo__maker[b-f6i1wci6tc] {
    color: #212529;   /* near-black        */
}

.smm-logo__domain[b-f6i1wci6tc] {
    font-size: 0.95rem;
    font-weight: 500;
    color: #6c757d;
    letter-spacing: 0;
    vertical-align: baseline;
    margin-left: 1px;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-vttusvsshh],
.components-reconnect-repeated-attempt-visible[b-vttusvsshh],
.components-reconnect-failed-visible[b-vttusvsshh],
.components-pause-visible[b-vttusvsshh],
.components-resume-failed-visible[b-vttusvsshh],
.components-rejoining-animation[b-vttusvsshh] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-vttusvsshh],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-vttusvsshh],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-vttusvsshh],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-vttusvsshh],
#components-reconnect-modal.components-reconnect-retrying[b-vttusvsshh],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-vttusvsshh],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-vttusvsshh],
#components-reconnect-modal.components-reconnect-failed[b-vttusvsshh],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-vttusvsshh] {
    display: block;
}


#components-reconnect-modal[b-vttusvsshh] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-vttusvsshh 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-vttusvsshh 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-vttusvsshh 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-vttusvsshh]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-vttusvsshh 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-vttusvsshh {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-vttusvsshh {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-vttusvsshh {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-vttusvsshh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-vttusvsshh] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-vttusvsshh] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-vttusvsshh] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-vttusvsshh] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-vttusvsshh] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-vttusvsshh] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-vttusvsshh 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-vttusvsshh] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-vttusvsshh {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/BrowseClubs.razor.rz.scp.css */
/* ── Hero Header ──────────────────────────────────────────────────────────── */
.browse-clubs-hero[b-kryb0s4g2x] {
    background: linear-gradient(135deg, #1a4d2e 0%, #28a745 100%);
    color: #fff;
}

.browse-clubs-title[b-kryb0s4g2x] {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.browse-clubs-subtitle[b-kryb0s4g2x] {
    font-size: 1.05rem;
    opacity: 0.88;
}

/* breadcrumb overrides inside the hero */
.breadcrumb-custom[b-kryb0s4g2x] {
    --bs-breadcrumb-divider-color: rgba(255,255,255,.5);
    --bs-breadcrumb-item-active-color: rgba(255,255,255,.75);
}

.breadcrumb-custom .breadcrumb-item a[b-kryb0s4g2x] {
    color: rgba(255,255,255,.85);
    text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item a:hover[b-kryb0s4g2x] {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item[b-kryb0s4g2x]::before {
    color: rgba(255,255,255,.45);
}

/* ── State Filter Tabs ────────────────────────────────────────────────────── */
.state-filter-wrapper[b-kryb0s4g2x] {
    border-bottom: 2px solid #e9ecef;
}

.state-tabs[b-kryb0s4g2x] {
    gap: 0.25rem;
}

.state-tab-link[b-kryb0s4g2x] {
    white-space: nowrap;
    font-size: 0.875rem;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    color: #495057;
    border: 1px solid #dee2e6;
    background-color: #fff;
    transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}

.state-tab-link:hover[b-kryb0s4g2x] {
    background-color: #e9f5ee;
    border-color: #28a745;
    color: #28a745;
}

.state-tab-link.active[b-kryb0s4g2x] {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
    font-weight: 600;
}

/* hide scrollbar on the pill row but keep it scrollable */
.state-tabs[b-kryb0s4g2x]::-webkit-scrollbar { height: 4px; }
.state-tabs[b-kryb0s4g2x]::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }

/* ── CTA Sidebar Card ─────────────────────────────────────────────────────── */
.cta-card[b-kryb0s4g2x] {
    background: linear-gradient(135deg, #f0fff4, #d4edda);
    border: 1px solid #c3e6cb !important;
}

/* ── Club Result Cards ────────────────────────────────────────────────────── */
.club-card[b-kryb0s4g2x] {
    border-radius: 0.75rem !important;
    transition: box-shadow 0.2s, transform 0.15s;
    position: relative;
}

.club-card:hover[b-kryb0s4g2x] {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10) !important;
    transform: translateY(-2px);
}

.club-icon[b-kryb0s4g2x] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e9f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.club-name-link[b-kryb0s4g2x] {
    color: #1a4d2e;
    font-size: 1.05rem;
}

.club-name-link:hover[b-kryb0s4g2x] {
    color: #28a745;
}

.club-description[b-kryb0s4g2x] {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Pagination ───────────────────────────────────────────────────────────── */
.pagination .page-link[b-kryb0s4g2x] {
    min-width: 2.25rem;
    text-align: center;
    border-radius: 6px !important;
    border-color: #dee2e6;
    color: #28a745;
    transition: background-color 0.15s;
}

.pagination .page-item.active .page-link[b-kryb0s4g2x] {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
    font-weight: 600;
}
/* /Components/Pages/BrowseSport.razor.rz.scp.css */
/* ── Hero Header ──────────────────────────────────────────────────────────── */
.browse-sport-hero[b-yjrb6jrkqg] {
    background: linear-gradient(135deg, #1a3a5c 0%, #0d6efd 100%);
    color: #fff;
}

.browse-sport-title[b-yjrb6jrkqg] {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.browse-sport-subtitle[b-yjrb6jrkqg] {
    font-size: 1.05rem;
    opacity: 0.88;
}

/* breadcrumb overrides inside the hero */
.breadcrumb-custom[b-yjrb6jrkqg] {
    --bs-breadcrumb-divider-color: rgba(255,255,255,.5);
    --bs-breadcrumb-item-active-color: rgba(255,255,255,.75);
}

.breadcrumb-custom .breadcrumb-item a[b-yjrb6jrkqg] {
    color: rgba(255,255,255,.85);
    text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item a:hover[b-yjrb6jrkqg] {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item[b-yjrb6jrkqg]::before {
    color: rgba(255,255,255,.45);
}

/* ── State Filter Tabs ────────────────────────────────────────────────────── */
.state-filter-wrapper[b-yjrb6jrkqg] {
    border-bottom: 2px solid #e9ecef;
}

.state-tabs[b-yjrb6jrkqg] {
    gap: 0.25rem;
}

.state-tab-link[b-yjrb6jrkqg] {
    white-space: nowrap;
    font-size: 0.875rem;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    color: #495057;
    border: 1px solid #dee2e6;
    background-color: #fff;
    transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}

.state-tab-link:hover[b-yjrb6jrkqg] {
    background-color: #e9f0ff;
    border-color: #0d6efd;
    color: #0d6efd;
}

.state-tab-link.active[b-yjrb6jrkqg] {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
    font-weight: 600;
}

/* hide scrollbar on the pill row but keep it scrollable */
.state-tabs[b-yjrb6jrkqg]::-webkit-scrollbar {
    height: 4px;
}

.state-tabs[b-yjrb6jrkqg]::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

/* ── Pagination ───────────────────────────────────────────────────────────── */
.pagination .page-link[b-yjrb6jrkqg] {
    min-width: 2.25rem;
    text-align: center;
    border-radius: 6px !important;
    border-color: #dee2e6;
    color: #0d6efd;
    transition: background-color 0.15s;
}

.pagination .page-item.active .page-link[b-yjrb6jrkqg] {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
    font-weight: 600;
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ══════════════════════════════════════════════════════════════
   CAROUSEL — standalone, no content on top
   ══════════════════════════════════════════════════════════════ */
.hero-carousel-section[b-1tepe6iifg] {
    line-height: 0; /* remove gap below inline img */
}

.hero-carousel-section .hero-swiper .swiper-slide img[b-1tepe6iifg] {
    width: 100%;
    height: 260px;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* ══════════════════════════════════════════════════════════════
   HERO CTA BAND — headline + search card below the carousel
   ══════════════════════════════════════════════════════════════ */
.hero-cta-band[b-1tepe6iifg] {
    background: linear-gradient(120deg, #0d2a5e 0%, #1b4a8a 60%, #1a6b4a 100%);
}

.text-white-75[b-1tepe6iifg] {
    color: rgba(255, 255, 255, 0.82);
}

/* Search card that sits in the hero */
.search-hero-card[b-1tepe6iifg] {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
}

.search-hero-card .nav-pills .nav-link[b-1tepe6iifg] {
    border-radius: 0.5rem;
    color: #495057;
    transition: background 0.2s, color 0.2s;
}

.search-hero-card .nav-pills .nav-link.active[b-1tepe6iifg] {
    background-color: #1b6ec2;
    color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   STATS STRIP
   ══════════════════════════════════════════════════════════════ */
.stats-strip[b-1tepe6iifg] {
    background: linear-gradient(135deg, #1b6ec2 0%, #0d47a1 100%);
}

.stat-item[b-1tepe6iifg] {
    padding: 0.5rem;
}

.stat-number[b-1tepe6iifg] {
    line-height: 1.1;
}

/* ══════════════════════════════════════════════════════════════
   FEATURE CARDS
   ══════════════════════════════════════════════════════════════ */
.feature-card[b-1tepe6iifg] {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover[b-1tepe6iifg] {
    transform: translateY(-4px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.12) !important;
}

.feature-icon[b-1tepe6iifg] {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ══════════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════════ */
.cta-banner[b-1tepe6iifg] {
    background: linear-gradient(135deg, #1b6ec2 0%, #198754 100%);
}

.cta-bg-shape[b-1tepe6iifg] {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 200'%3E%3Cellipse cx='700' cy='100' rx='300' ry='180' fill='rgba(255,255,255,0.05)'/%3E%3Cellipse cx='100' cy='150' rx='200' ry='120' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E")
        no-repeat center / cover;
    pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════
   SIDEBAR CARDS
   ══════════════════════════════════════════════════════════════ */
.rounded-top-4[b-1tepe6iifg] {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
}

.popular-list-scroll[b-1tepe6iifg] {
    max-height: 500px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #dee2e6 transparent;
}

.popular-list-scroll[b-1tepe6iifg]::-webkit-scrollbar {
    width: 4px;
}

.popular-list-scroll[b-1tepe6iifg]::-webkit-scrollbar-track {
    background: transparent;
}

.popular-list-scroll[b-1tepe6iifg]::-webkit-scrollbar-thumb {
    background-color: #dee2e6;
    border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
    .search-hero-card[b-1tepe6iifg] {
        background: #fff;
        backdrop-filter: none;
    }
}
/* /Components/Pages/profile/MyDetails.razor.rz.scp.css */
/* ── Photo Album thumbnails ───────────────────────────────────────────────── */

.album-thumb[b-egabyqdf9x] {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    transition: opacity 0.15s, transform 0.15s;
}

.album-thumb-link:hover .album-thumb[b-egabyqdf9x] {
    opacity: 0.82;
    transform: scale(1.03);
}
/* /Components/Pages/SportsClub.razor.rz.scp.css */
/* ── Hero Banner ──────────────────────────────────────────────────────────── */
.sc-hero[b-g3r4axpd54] {
    background: linear-gradient(135deg, #1a4d2e 0%, #28a745 100%);
    color: #fff;
}

.sc-hero-icon[b-g3r4axpd54] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sc-hero-title[b-g3r4axpd54] {
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sc-hero-subtitle[b-g3r4axpd54] {
    font-size: 1rem;
    opacity: 0.88;
}

/* breadcrumb overrides inside the hero */
.sc-breadcrumb[b-g3r4axpd54] {
    --bs-breadcrumb-divider-color: rgba(255,255,255,.5);
    --bs-breadcrumb-item-active-color: rgba(255,255,255,.75);
}

.sc-breadcrumb .breadcrumb-item a[b-g3r4axpd54] {
    color: rgba(255,255,255,.85);
    text-decoration: none;
}

.sc-breadcrumb .breadcrumb-item a:hover[b-g3r4axpd54] {
    color: #fff;
    text-decoration: underline;
}

.sc-breadcrumb .breadcrumb-item + .breadcrumb-item[b-g3r4axpd54]::before {
    color: rgba(255,255,255,.45);
}

/* ── Card Header ──────────────────────────────────────────────────────────── */
.sc-card-header[b-g3r4axpd54] {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
    color: #495057;
    padding: 0.65rem 1rem;
}

/* ── Contact Detail Rows ──────────────────────────────────────────────────── */
.sc-detail-row[b-g3r4axpd54] {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid #f1f3f5;
    font-size: 0.9rem;
    color: #343a40;
}

.sc-detail-row:last-child[b-g3r4axpd54] {
    border-bottom: none;
}

.sc-detail-icon[b-g3r4axpd54] {
    margin-top: 3px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* ── Description ──────────────────────────────────────────────────────────── */
.sc-description[b-g3r4axpd54] {
    line-height: 1.75;
    color: #343a40;
    white-space: pre-line;
}

/* ── Quick Facts ──────────────────────────────────────────────────────────── */
.sc-fact-item[b-g3r4axpd54] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.sc-fact-label[b-g3r4axpd54] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6c757d;
}

.sc-fact-value[b-g3r4axpd54] {
    font-size: 0.92rem;
    color: #212529;
}

/* ── Photo Gallery ────────────────────────────────────────────────────────── */
.sc-gallery[b-g3r4axpd54] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.sc-gallery-item img[b-g3r4axpd54] {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    transition: opacity 0.2s;
}

.sc-gallery-item:hover img[b-g3r4axpd54] {
    opacity: 0.85;
}

/* ── CTA Banner ───────────────────────────────────────────────────────────── */
.sc-cta-card[b-g3r4axpd54] {
    background: linear-gradient(135deg, #f0fff4, #d4edda);
    border: 1px solid #c3e6cb !important;
    border-radius: 0.75rem !important;
}
/* /Components/Pages/ViewMember.razor.rz.scp.css */
/* ── Hero banner ──────────────────────────────────────────────────────────── */
.member-hero[b-qxprut724s] {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: #fff;
}

.member-hero .breadcrumb-item[b-qxprut724s],
.member-hero .breadcrumb-item a[b-qxprut724s],
.member-hero .breadcrumb-item.active[b-qxprut724s] {
    color: rgba(255,255,255,.85);
}

.member-hero .breadcrumb-item + .breadcrumb-item[b-qxprut724s]::before {
    color: rgba(255,255,255,.5);
}

/* ── Profile image ────────────────────────────────────────────────────────── */
.member-profile-img[b-qxprut724s] {
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    border: 3px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

/* ── Personal details list ────────────────────────────────────────────────── */
.member-details-list dt[b-qxprut724s] {
    font-weight: 600;
    color: #495057;
}

.member-details-list dd[b-qxprut724s] {
    color: #212529;
}

/* ── Favourite heart ──────────────────────────────────────────────────────── */
.favourite-heart[b-qxprut724s] {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 1rem;
    line-height: 1;
    transition: color 0.2s, transform 0.15s;
}

.favourite-heart:hover[b-qxprut724s] {
    color: #dc3545;
    transform: scale(1.15);
}

.favourite-heart.is-favourite[b-qxprut724s] {
    color: #dc3545;
}

.favourite-heart:disabled[b-qxprut724s] {
    opacity: 0.6;
    pointer-events: none;
}

.favourite-add-link[b-qxprut724s] {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    font-size: 0.8rem;
    color: #adb5bd;
    text-decoration: none;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
    transition: color 0.2s;
}

.favourite-add-link:hover[b-qxprut724s] {
    color: #dc3545;
}

.favourite-add-link:disabled[b-qxprut724s] {
    opacity: 0.6;
    pointer-events: none;
}


.member-gallery-thumb[b-qxprut724s] {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    transition: opacity 0.15s;
}

.member-gallery-link:hover .member-gallery-thumb[b-qxprut724s] {
    opacity: 0.85;
}

/* ── Profile image lightbox trigger ──────────────────────────────────────── */
.member-profile-img[b-qxprut724s] {
    cursor: pointer;
}

a:has(.member-profile-img):hover .member-profile-img[b-qxprut724s] {
    opacity: 0.9;
    transition: opacity 0.15s;
}
/* /Components/Shared/ProfileCard.razor.rz.scp.css */
.profile-card[b-0oqb9wsf55] {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.profile-card:hover[b-0oqb9wsf55] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.12) !important;
}

.profile-card-img-wrapper[b-0oqb9wsf55] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 16px;
}

.profile-card-img[b-0oqb9wsf55] {
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    border: 3px solid #e9ecef;
}

.profile-comments[b-0oqb9wsf55] {
    color: #6c757d;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}
