/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Header Background remains at the Layout level */
.golf-header[b-1oq7a884de] {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, transparent 55%),
        linear-gradient(135deg, #083025 0%, #0f5c40 50%, #083025 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
    /* Ensure the header (and any absolutely-positioned children like the search dropdown)
       paint above Leaflet map layers, which have their own stacking contexts. */
    position: relative;
    z-index: 500;
    /* Respect iPhone notch / Dynamic Island safe area at the top */
    padding-top: env(safe-area-inset-top);
}

/* Override Bootstrap's vh-100: use dynamic viewport height so it works correctly on
   iOS Safari (100vh there includes the browser chrome which causes overflow).
   The fallback (100vh) is listed first so it's used by browsers that don't support dvh. */
.vh-100[b-1oq7a884de] {
    height: 100vh !important;
    height: 100dvh !important;
}

/* iOS smooth scrolling on the main content area */
main.flex-grow-1[b-1oq7a884de] {
    -webkit-overflow-scrolling: touch;
    /* Bottom safe area: ensure scrollable content is not hidden behind the iOS home bar */
    padding-bottom: env(safe-area-inset-bottom);
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Nav container */
.navbar-container[b-b25fjk1cmd] {
    width: 100%;
}

/* ── Nav search bar (map homepage only) ──────────────────────────── */
.nav-search-wrapper[b-b25fjk1cmd] {
    position: relative;
    z-index: 10;
    min-width: 240px;
    max-width: 300px;
    flex-shrink: 0;
}

/* Row that holds the pill bar + the external search button */
.nav-search-outer[b-b25fjk1cmd] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-search-bar[b-b25fjk1cmd] {
    display: flex;
    align-items: center;
    flex: 1;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 9999px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

    .nav-search-bar:focus-within[b-b25fjk1cmd] {
        background: rgba(255, 255, 255, 0.18);
        border-color: rgba(255, 255, 255, 0.5);
    }

.nav-search-input[b-b25fjk1cmd] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    padding: 0.45rem 0.75rem;
    min-width: 0;
}

    .nav-search-input[b-b25fjk1cmd]::placeholder {
        color: rgba(255, 255, 255, 0.55);
    }

/* X clear button — sits inside the pill on the right */
.nav-search-clear-btn[b-b25fjk1cmd] {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    font-size: 0.78rem;
    line-height: 1;
    border-radius: 0 9999px 9999px 0;
    transition: color 0.2s ease;
    flex-shrink: 0;
    /* Prevent iOS tap highlight */
    -webkit-tap-highlight-color: transparent;
}

    .nav-search-clear-btn:hover[b-b25fjk1cmd] {
        color: #ffffff;
    }

/* Search submit button — sits outside the pill */
.nav-search-submit-btn[b-b25fjk1cmd] {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    padding: 0.4rem 0.65rem;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 9999px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
    line-height: 1;
    align-self: stretch;
}

    .nav-search-submit-btn:hover[b-b25fjk1cmd] {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        color: #ffffff;
    }

.nav-search-dropdown[b-b25fjk1cmd] {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #0c261c;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    list-style: none;
    margin: 0;
    padding: 0.4rem 0;
    z-index: 9999;
    max-height: 320px;
    overflow-y: auto;
}

.nav-search-item[b-b25fjk1cmd] {
    display: flex;
    flex-direction: column;
    padding: 0.6rem 1rem;
    cursor: pointer;
    transition: background 0.15s ease;
}

    .nav-search-item:hover[b-b25fjk1cmd] {
        background: rgba(255, 255, 255, 0.08);
    }

.nav-search-name[b-b25fjk1cmd] {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-search-location[b-b25fjk1cmd] {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    margin-top: 1px;
}

/* Title — absolutely centered in the header */
.golf-title[b-b25fjk1cmd] {
    font-family: 'Anton', sans-serif;
    letter-spacing: 2px;
    font-weight: 400; /* or 700 for bolder */
    font-size: 2.2rem;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    z-index: 2;
    transition: opacity 0.2s ease;
}

    .golf-title:hover[b-b25fjk1cmd] {
        opacity: 0.88;
        color: #ffffff;
    }

/* Desktop nav links (right side) */
.nav-links-desktop[b-b25fjk1cmd] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link-item[b-b25fjk1cmd] {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

    .nav-link-item:hover[b-b25fjk1cmd] {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.12);
    }

.nav-link-button[b-b25fjk1cmd] {
    background: none;
    border: none;
    cursor: pointer;
}

.nav-link-login[b-b25fjk1cmd] {
    /* No special default styling — matches the look of other nav buttons */
}

/* Profile button hover */
.profile-btn-hover[b-b25fjk1cmd] {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .profile-btn-hover:hover[b-b25fjk1cmd] {
        transform: scale(1.08);
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
    }

/* Hamburger button — mobile only */
.hamburger-btn[b-b25fjk1cmd] {
    display: none;
    background: none;
    border: none;
    color: #f0f0f0;
    font-size: 1.6rem;
    padding: 0.4rem;
    border-radius: 0.5rem;
    transition: background 0.2s ease;
    cursor: pointer;
}

    .hamburger-btn:hover[b-b25fjk1cmd] {
        background: rgba(255, 255, 255, 0.12);
    }

/* Mobile backdrop */
.mobile-menu-backdrop[b-b25fjk1cmd] {
    display: none;
}

/* Mobile slide-out menu */
.mobile-menu[b-b25fjk1cmd] {
    display: none;
}

/* ───── Responsive: mobile ───── */
@media (max-width: 768px) {
    .nav-links-desktop[b-b25fjk1cmd] {
        display: none;
    }

    /* Hide the desktop search bar on mobile — it lives in the slide-out menu instead */
    .nav-search-wrapper[b-b25fjk1cmd] {
        display: none;
    }

    .mobile-search-wrapper .nav-search-wrapper[b-b25fjk1cmd] {
        display: block;
        max-width: 100%;
    }

    .hamburger-btn[b-b25fjk1cmd] {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .golf-title[b-b25fjk1cmd] {
        /* Break out of position-absolute centering so it doesn't collide with the hamburger */
        position: static !important;
        transform: none !important;
        left: auto !important;
        flex: 1;
        text-align: center;
        font-size: 2rem;
        letter-spacing: 1.5px;
    }

    .mobile-menu-backdrop[b-b25fjk1cmd] {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .mobile-menu[b-b25fjk1cmd] {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: #0a3d2e;
        padding: 5rem 1.5rem 2rem;
        padding-bottom: calc(2rem + env(safe-area-inset-bottom));
        z-index: 1000;
        transition: right 0.3s ease;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

        .mobile-menu.open[b-b25fjk1cmd] {
            right: 0;
        }

    .mobile-nav-link[b-b25fjk1cmd] {
        font-family: 'Inter', 'Helvetica Neue', sans-serif;
        font-weight: 500;
        font-size: 1.05rem;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        padding: 0.85rem 1rem;
        border-radius: 0.5rem;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
    }

        .mobile-nav-link:hover[b-b25fjk1cmd] {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.1);
        }

    .mobile-nav-button[b-b25fjk1cmd] {
        background: none;
        border: none;
        cursor: pointer;
        width: 100%;
        text-align: left;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-mdm0g6rsmh],
.components-reconnect-repeated-attempt-visible[b-mdm0g6rsmh],
.components-reconnect-failed-visible[b-mdm0g6rsmh],
.components-pause-visible[b-mdm0g6rsmh],
.components-resume-failed-visible[b-mdm0g6rsmh],
.components-rejoining-animation[b-mdm0g6rsmh] {
    display: none;
}

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


#components-reconnect-modal[b-mdm0g6rsmh] {
    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-mdm0g6rsmh 0.5s both;
    &[open]

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-mdm0g6rsmh {
    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/About.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════════
   About.razor – scoped styles
   Dark-green / glassmorphism / white-text theme + page animations
   ═══════════════════════════════════════════════════════════════════ */

/* ── Page background ────────────────────────────────────────────── */
.about-bg[b-sbsrac4otc] {
    background: linear-gradient(135deg, #0a3d2e 0%, #0f5c40 35%, #1a7a55 65%, #0a3d2e 100%);
    background-attachment: scroll; /* fixed is broken on iOS Safari – use scroll */
    position: relative;
    overflow-x: hidden;
}

    .about-bg[b-sbsrac4otc]::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
            radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

/* ── Keyframe animations ─────────────────────────────────────────── */
@keyframes heroFadeDown-b-sbsrac4otc {
    from { opacity: 0; transform: translateY(-40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp-b-sbsrac4otc {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes float-b-sbsrac4otc {
    0%,  100% { transform: translateY(0)     rotate(0deg);  }
    33%       { transform: translateY(-18px) rotate(6deg);  }
    66%       { transform: translateY(-9px)  rotate(-4deg); }
}

@keyframes expandWidth-b-sbsrac4otc {
    from { width: 0;     opacity: 0; }
    to   { width: 140px; opacity: 1; }
}

@keyframes glowPulse-b-sbsrac4otc {
    0%,  100% { box-shadow: 0 0 18px rgba(255, 215, 0, 0.08), 0 8px 32px rgba(0, 0, 0, 0.35); }
    50%        { box-shadow: 0 0 36px rgba(255, 215, 0, 0.22), 0 8px 40px rgba(0, 0, 0, 0.45); }
}

/* ── Hero section ────────────────────────────────────────────────── */
.hero-section[b-sbsrac4otc] {
    animation: heroFadeDown-b-sbsrac4otc 0.75s ease both;
}

/* Plain white title */
.hero-title[b-sbsrac4otc] {
    color: #ffffff;
    font-family: 'Anton', Impact, sans-serif;
    letter-spacing: 3px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

/* Animated divider bar beneath hero tagline */
.hero-divider[b-sbsrac4otc] {
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    border-radius: 2px;
    width: 0;
    opacity: 0;
    animation: expandWidth-b-sbsrac4otc 0.9s ease 0.55s forwards;
}

/* Tagline fade-in */
.fade-in-up[b-sbsrac4otc] {
    opacity: 0;
    animation: fadeInUp-b-sbsrac4otc 0.75s ease 0.3s forwards;
}

/* ── Floating golf ball ──────────────────────────────────────────── */
.golf-ball-container[b-sbsrac4otc] {
    display: inline-block;
    animation: float-b-sbsrac4otc 5s ease-in-out infinite;
}

.golf-ball-emoji[b-sbsrac4otc] {
    font-size: 3.8rem;
    display: block;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}

/* ── Content sections – staggered fade-in ───────────────────────── */
.fade-in-section[b-sbsrac4otc] {
    opacity: 0;
    animation: fadeInUp-b-sbsrac4otc 0.75s ease var(--delay, 0.15s) both;
}

/* ── Glassmorphism cards ─────────────────────────────────────────── */
.golf-card[b-sbsrac4otc] {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.25rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

    .golf-card:hover[b-sbsrac4otc] {
        transform: translateY(-10px);
        box-shadow: 0 22px 64px rgba(0, 0, 0, 0.5);
        border-color: rgba(255, 215, 0, 0.28);
    }

/* ── Section / philosophy / roadmap icons ────────────────────────── */
.section-icon[b-sbsrac4otc],
.philosophy-icon[b-sbsrac4otc] {
    font-size: 2.5rem;
}

.roadmap-icon[b-sbsrac4otc] {
    font-size: 2.2rem;
}

/* ── Roadmap cards – pulsing gold glow ───────────────────────────── */
.roadmap-card[b-sbsrac4otc] {
    animation: glowPulse-b-sbsrac4otc 3.5s ease-in-out infinite;
}

/* "Your Idea Here" card – softer, inviting glow */
.roadmap-card-open[b-sbsrac4otc] {
    border-color: rgba(255, 215, 0, 0.25) !important;
    animation-duration: 2.5s;
}

/* ── Glowing gradient CTA button ─────────────────────────────────── */
.golf-btn-glow[b-sbsrac4otc] {
    background: linear-gradient(90deg, #198754, #2e7d32, #146c43, #198754);
    background-size: 300% 100%;
    border: none;
    color: #fff;
    font-weight: 700;
    transition: transform 0.5s ease, box-shadow 0.5s ease, background-position 0.5s ease;
    box-shadow: 0 0 25px rgba(25, 135, 84, 0.65);
}

    .golf-btn-glow:hover[b-sbsrac4otc] {
        transform: translateY(-4px);
        box-shadow: 0 0 52px rgba(25, 135, 84, 1);
        background-position: right center;
        color: #fff;
    }

/* ── Sign-off line ───────────────────────────────────────────────── */
.about-sign-off[b-sbsrac4otc] {
    font-style: italic;
    color: #ffffff;
}

/* ── Helpers ─────────────────────────────────────────────────────── */
.text-white-75[b-sbsrac4otc] {
    color: rgba(255, 255, 255, 0.75);
}

.text-white-50[b-sbsrac4otc] {
    color: rgba(255, 255, 255, 0.50);
}
/* /Components/Pages/CourseDashboard.razor.rz.scp.css */
/* ────────────────────────────────────────────────
   Course Dashboard – Fore-Midable Score
   Matches site-wide dark golf green glassmorphism theme
───────────────────────────────────────────────── */

/* Full-page background */
.dashboard-bg[b-jl3c7kc2e0] {
    background: linear-gradient(135deg, #0a3d2e 0%, #0f5c40 35%, #1a7a55 65%, #0a3d2e 100%);
    background-attachment: scroll; /* fixed is broken on iOS Safari – use scroll */
    position: relative;
    color: #f8fdfa;
}

    .dashboard-bg[b-jl3c7kc2e0]::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
        pointer-events: none;
    }

/* Hero header */
.dashboard-hero[b-jl3c7kc2e0] {
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

/* Title styling */
.golf-title[b-jl3c7kc2e0] {
    font-family: 'Barlow Condensed', Arial Narrow, sans-serif;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Glow button (reuse from About page) */
.golf-btn-glow[b-jl3c7kc2e0] {
    background: linear-gradient(90deg, #198754, #2e7d32, #146c43, #198754);
    background-size: 300% 100%;
    border: none;
    color: white;
    font-weight: bold;
    transition: all 0.6s ease;
    box-shadow: 0 0 25px rgba(25, 135, 84, 0.7);
}

    .golf-btn-glow:hover[b-jl3c7kc2e0] {
        transform: translateY(-4px);
        box-shadow: 0 0 50px rgba(25, 135, 84, 1);
        background-position: right center;
        color: white;
    }

/* Responsive tweaks */
@media (max-width: 768px) {
    .dashboard-hero h1[b-jl3c7kc2e0] {
        font-size: 1.75rem !important;
    }
}
/* /Components/Pages/CourseReviews.razor.rz.scp.css */
/* ── Reviews full page ──────────────────────────────────────────────────── */

.reviews-bg[b-yza52pihap] {
    background: linear-gradient(160deg, #0d1f14 0%, #0a1a10 40%, #071209 100%);
}

.reviews-hero[b-yza52pihap] {
    background: linear-gradient(135deg, #0a3d2e 0%, #0f5c40 40%, #1a7a55 70%, #0a3d2e 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    position: relative;
}

    .reviews-hero[b-yza52pihap]::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 70% 50%, rgba(255, 215, 0, 0.06) 0%, transparent 65%);
        pointer-events: none;
    }

.back-link[b-yza52pihap] {
    font-size: 0.85rem;
    color: rgba(248, 253, 250, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

    .back-link:hover[b-yza52pihap] {
        color: #2ecc71;
    }

.reviews-page-card[b-yza52pihap] {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 20px;
}

/* Overall score */
.page-big-score[b-yza52pihap] {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.page-sum-star[b-yza52pihap] {
    font-size: 1.1rem;
}

.star-filled[b-yza52pihap] {
    color: #f4c430;
}

.star-empty[b-yza52pihap] {
    color: rgba(255, 255, 255, 0.2);
}

/* Rating breakdown bars */
.breakdown-label[b-yza52pihap] {
    font-size: 0.75rem;
    color: rgba(248, 253, 250, 0.6);
    width: 2.2rem;
    text-align: right;
    white-space: nowrap;
}

.breakdown-bar-track[b-yza52pihap] {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.breakdown-bar-fill[b-yza52pihap] {
    height: 100%;
    background: linear-gradient(90deg, #1b8e5f, #2ecc71);
    border-radius: 4px;
    transition: width 0.4s ease;
}

.breakdown-count[b-yza52pihap] {
    font-size: 0.75rem;
    color: rgba(248, 253, 250, 0.5);
    width: 1.5rem;
    text-align: right;
}

/* Write review button */
.write-review-btn[b-yza52pihap] {
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.4);
    color: #2ecc71;
    border-radius: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    transition: all 0.25s ease;
    text-decoration: none;
}

    .write-review-btn:hover[b-yza52pihap] {
        background: rgba(46, 204, 113, 0.22);
        box-shadow: 0 0 14px rgba(46, 204, 113, 0.3);
        color: #2ecc71;
    }

/* Star buttons */
.star-btn[b-yza52pihap] {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.15s ease, transform 0.15s ease;
    line-height: 1;
}

    .star-btn.star-active[b-yza52pihap],
    .star-btn:hover[b-yza52pihap] {
        color: #f4c430;
    }

    .star-btn:hover[b-yza52pihap] {
        transform: scale(1.2);
    }

    .star-btn:disabled[b-yza52pihap] {
        cursor: not-allowed;
        opacity: 0.6;
    }

/* Form inputs */
.review-input[b-yza52pihap] {
    background: rgba(0, 0, 0, 0.45) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 0.6rem;
}

    .review-input:focus[b-yza52pihap] {
        border-color: #198754 !important;
        box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.2) !important;
    }

    .review-input[b-yza52pihap]::placeholder {
        color: rgba(255, 255, 255, 0.35) !important;
    }

/* Submit button */
.write-review-submit-btn[b-yza52pihap] {
    background: linear-gradient(90deg, #1b8e5f, #2e9d6e);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 0.6rem;
    transition: all 0.25s ease;
    padding: 0.55rem 1rem;
}

    .write-review-submit-btn:hover:not(:disabled)[b-yza52pihap] {
        box-shadow: 0 0 18px rgba(46, 204, 113, 0.5);
        transform: translateY(-1px);
    }

    .write-review-submit-btn:disabled[b-yza52pihap] {
        opacity: 0.55;
    }

/* Photo badge */
.photo-badge[b-yza52pihap] {
    font-size: 0.75rem;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
    border-radius: 0.4rem;
    padding: 0.2rem 0.5rem;
}

/* Existing photo thumbnails (edit mode) */
.existing-photo-wrap[b-yza52pihap] {
    position: relative;
    display: inline-block;
}

.existing-photo[b-yza52pihap] {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.remove-photo-btn[b-yza52pihap] {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: rgba(220, 53, 69, 0.85);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease;
}

    .remove-photo-btn:hover[b-yza52pihap] {
        background: #dc3545;
    }

/* Full review cards */
.full-review-card[b-yza52pihap] {
    transition: border-color 0.2s ease;
}

    .full-review-card:hover[b-yza52pihap] {
        border-color: rgba(46, 204, 113, 0.2);
    }

.reviewer-avatar-lg[b-yza52pihap] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(46, 204, 113, 0.35);
}

.reviewer-avatar-placeholder-lg[b-yza52pihap] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.4rem;
}

.reviewer-name-lg[b-yza52pihap] {
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 0.15rem;
}

.review-star-lg[b-yza52pihap] {
    font-size: 0.85rem;
}

.review-date-lg[b-yza52pihap] {
    font-size: 0.8rem;
    color: rgba(248, 253, 250, 0.45);
}

.review-edited[b-yza52pihap] {
    font-size: 0.75rem;
    color: rgba(248, 253, 250, 0.35);
    font-style: italic;
}

.review-title-lg[b-yza52pihap] {
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.review-body-lg[b-yza52pihap] {
    font-size: 0.9rem;
    color: rgba(248, 253, 250, 0.8);
    line-height: 1.65;
    margin-bottom: 0;
    white-space: pre-line;
}

/* Photo gallery */
.gallery-thumb[b-yza52pihap] {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

    .gallery-thumb:hover[b-yza52pihap] {
        opacity: 0.9;
        transform: scale(1.03);
    }

/* See all / load more */
.see-all-btn[b-yza52pihap] {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(248, 253, 250, 0.75);
    border-radius: 0.6rem;
    font-size: 0.85rem;
    padding: 0.5rem 1.5rem;
    transition: all 0.25s ease;
}

    .see-all-btn:hover[b-yza52pihap] {
        background: rgba(46, 204, 113, 0.1);
        border-color: rgba(46, 204, 113, 0.35);
        color: #2ecc71;
    }
/* /Components/Pages/CourseSearch.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════
   CourseSearch.razor – scoped styles
   Dark-green / glassmorphism theme matching the rest of the app
   ═══════════════════════════════════════════════════════════════ */

/* ── Page background ─────────────────────────────────────────── */
.search-bg[b-5fahl7bv2h] {
    background: linear-gradient(135deg, #0a3d2e 0%, #0f5c40 35%, #1a7a55 65%, #0a3d2e 100%);
    background-attachment: scroll; /* fixed is broken on iOS Safari – use scroll */
    position: relative;
    overflow-x: hidden;
}

    .search-bg[b-5fahl7bv2h]::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 60%),
            radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.04) 0%, transparent 50%);
        pointer-events: none;
    }

/* ── Hero header ─────────────────────────────────────────────── */
@keyframes heroFadeDown-b-5fahl7bv2h {
    from { opacity: 0; transform: translateY(-24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes subtitleFadeIn-b-5fahl7bv2h {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes dividerExpand-b-5fahl7bv2h {
    from { width: 0; opacity: 0; }
    to   { width: 80px; opacity: 1; }
}

@keyframes iconPulse-b-5fahl7bv2h {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.35); }
    50%       { box-shadow: 0 0 0 14px rgba(245, 197, 24, 0); }
}

.search-hero[b-5fahl7bv2h] {
    text-align: center;
    padding: 2.5rem 0 2rem;
    animation: heroFadeDown-b-5fahl7bv2h 0.6s ease both;
}

.search-hero-icon-wrap[b-5fahl7bv2h] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1b8e5f 0%, #27ae60 100%);
    border: 2px solid rgba(245, 197, 24, 0.55);
    margin-bottom: 1.1rem;
    font-size: 2.2rem;
    animation: iconPulse-b-5fahl7bv2h 2.8s ease-in-out infinite;
}

.search-hero-title[b-5fahl7bv2h] {
    font-family: 'Anton', 'Impact', sans-serif;
    font-size: 3rem;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    animation: heroFadeDown-b-5fahl7bv2h 0.65s 0.1s ease both;
}

.search-hero-subtitle[b-5fahl7bv2h] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    animation: subtitleFadeIn-b-5fahl7bv2h 0.7s 0.25s ease both;
}

.search-hero-divider[b-5fahl7bv2h] {
    display: block;
    height: 3px;
    width: 80px;
    margin: 0 auto;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, #f5c518, transparent);
    animation: dividerExpand-b-5fahl7bv2h 0.7s 0.4s ease both;
}

/* ── Search input group ──────────────────────────────────────── */
.search-input-group[b-5fahl7bv2h] {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 9999px;
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease;
}

    .search-input-group:focus-within[b-5fahl7bv2h] {
        background: rgba(255, 255, 255, 0.16);
        border-color: rgba(255, 255, 255, 0.5);
    }

.search-page-input[b-5fahl7bv2h] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
}

    .search-page-input[b-5fahl7bv2h]::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

.search-page-btn[b-5fahl7bv2h] {
    background: #1b8e5f;
    border: none;
    color: #ffffff;
    padding: 0.7rem 1.2rem;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

    .search-page-btn:hover[b-5fahl7bv2h] {
        background: #27ae60;
    }

/* ── Clear button ────────────────────────────────────────────── */
.search-clear-btn[b-5fahl7bv2h] {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.55);
    padding: 0.7rem 0.5rem 0.7rem 0.25rem;
    font-size: 0.85rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.15s ease;
    flex-shrink: 0;
}

    .search-clear-btn:hover[b-5fahl7bv2h] {
        color: #ffffff;
    }

/* ── Filter panel ────────────────────────────────────────────── */
.search-filters-panel[b-5fahl7bv2h] {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0.9rem;
    padding: 0.9rem 1.1rem;
}

.filter-label[b-5fahl7bv2h] {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.filter-select[b-5fahl7bv2h] {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: #ffffff;
    font-size: 0.88rem;
    padding: 0.45rem 0.75rem;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    appearance: auto;
}

    .filter-select:focus[b-5fahl7bv2h] {
        border-color: rgba(255, 255, 255, 0.45);
        background: rgba(255, 255, 255, 0.15);
    }

    .filter-select option[b-5fahl7bv2h] {
        background: #0f5c40;
        color: #ffffff;
    }

.filter-checkbox-label[b-5fahl7bv2h] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    cursor: pointer;
    user-select: none;
    padding: 0.45rem 0;
}

    .filter-checkbox-label input[type="checkbox"][b-5fahl7bv2h] {
        width: 1.1rem;
        height: 1.1rem;
        cursor: pointer;
        accent-color: #27ae60;
        flex-shrink: 0;
    }

.filter-active-badge[b-5fahl7bv2h] {
    display: inline-flex;
    align-items: center;
    background: rgba(39, 174, 96, 0.25);
    border: 1px solid rgba(39, 174, 96, 0.45);
    color: #7de8a0;
    border-radius: 999px;
    padding: 0.1rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 600;
    vertical-align: middle;
}

/* ── Result cards ────────────────────────────────────────────── */
.course-result-card[b-5fahl7bv2h] {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.1rem;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

    .course-result-card:hover[b-5fahl7bv2h] {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
        background: rgba(255, 255, 255, 0.09);
    }

.course-result-body[b-5fahl7bv2h] {
    flex: 1;
    padding: 1.2rem 1.4rem 0.75rem;
}

.course-result-footer[b-5fahl7bv2h] {
    padding: 0.75rem 1.4rem 1.2rem;
}

.course-result-name[b-5fahl7bv2h] {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.1rem;
    line-height: 1.3;
}

.course-result-subname[b-5fahl7bv2h] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    margin-bottom: 0.4rem;
}

.course-result-location[b-5fahl7bv2h] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
}

.course-result-description[b-5fahl7bv2h] {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.course-result-rating[b-5fahl7bv2h] {
    display: flex;
    align-items: center;
}

.star-icon[b-5fahl7bv2h] {
    color: #f5c518;
    font-size: 0.85rem;
}

.course-result-btn[b-5fahl7bv2h] {
    background-color: #1b8e5f;
    border: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 0.6rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: background 0.2s ease;
}

    .course-result-btn:hover[b-5fahl7bv2h] {
        background-color: #27ae60;
        color: #ffffff;
    }

.course-result-map-btn[b-5fahl7bv2h] {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    border-radius: 0.6rem;
    padding: 0.45rem 1rem;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

    .course-result-map-btn:hover[b-5fahl7bv2h] {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
        color: #ffffff;
    }

/* ── Load More button ────────────────────────────────────────── */
.load-more-btn[b-5fahl7bv2h] {
    background: rgba(27, 142, 95, 0.25);
    border: 1px solid rgba(27, 142, 95, 0.6);
    color: #7de8a0;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.65rem 2.2rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
    display: inline-flex;
    align-items: center;
}

    .load-more-btn:hover:not(:disabled)[b-5fahl7bv2h] {
        background: rgba(27, 142, 95, 0.45);
        border-color: rgba(39, 174, 96, 0.85);
        color: #ffffff;
        transform: translateY(-2px);
    }

    .load-more-btn:disabled[b-5fahl7bv2h] {
        opacity: 0.65;
        cursor: not-allowed;
    }
/* /Components/Pages/Feedback.razor.rz.scp.css */
/* ── Feedback page ──────────────────────────────────────────────────────────── */

.feedback-bg[b-nmh33o57nv] {
    background: linear-gradient(135deg, #0a3d2e 0%, #0f5c40 35%, #1a7a55 65%, #0a3d2e 100%);
    background-attachment: scroll; /* fixed is broken on iOS Safari – use scroll */
}

/* Back link */
.feedback-back-link[b-nmh33o57nv] {
    font-size: 0.85rem;
    color: rgba(248, 253, 250, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

    .feedback-back-link:hover[b-nmh33o57nv] {
        color: #2ecc71;
    }

/* Header icon */
.feedback-header-icon[b-nmh33o57nv] {
    font-size: 3rem;
    animation: float-b-nmh33o57nv 4s ease-in-out infinite;
}

@keyframes float-b-nmh33o57nv {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

/* Success icon */
.feedback-success-icon[b-nmh33o57nv] {
    font-size: 4rem;
}

/* Form card */
.feedback-card[b-nmh33o57nv] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(8px);
}

/* Form inputs */
.feedback-input[b-nmh33o57nv] {
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 0.6rem;
}

    .feedback-input:focus[b-nmh33o57nv] {
        border-color: #198754 !important;
        box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.2) !important;
        background: rgba(0, 0, 0, 0.5) !important;
    }

    .feedback-input[b-nmh33o57nv]::placeholder {
        color: rgba(255, 255, 255, 0.3) !important;
    }

    .feedback-input option[b-nmh33o57nv] {
        background: #0f2d1f;
        color: #fff;
    }

/* Feedback type selector */
.feedback-type-option[b-nmh33o57nv] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    color: rgba(248, 253, 250, 0.75);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    user-select: none;
}

    .feedback-type-option input[type="radio"][b-nmh33o57nv] {
        display: none;
    }

    .feedback-type-option:hover[b-nmh33o57nv] {
        border-color: rgba(46, 204, 113, 0.4);
        color: #2ecc71;
        background: rgba(46, 204, 113, 0.06);
    }

    .feedback-type-option.selected[b-nmh33o57nv] {
        border-color: #2ecc71;
        color: #2ecc71;
        background: rgba(46, 204, 113, 0.1);
        box-shadow: 0 0 0 0.15rem rgba(46, 204, 113, 0.15);
    }

/* ── Button contrast overrides ──────────────────────────────────────────────
   The page background is a deep green (#0a3d2e → #1a7a55). A standard
   medium-green golf-btn-glow blends in too much, so we ramp up brightness,
   border, and shadow here. btn-outline-light gets a near-opaque border +
   subtle white fill so it reads clearly against the dark background.
   ─────────────────────────────────────────────────────────────────────────── */

.golf-btn-glow[b-nmh33o57nv] {
    background: linear-gradient(90deg, #27ae60, #2ecc71, #27ae60);
    background-size: 220% 100%;
    border: 2px solid rgba(255, 255, 255, 0.30);
    color: #fff;
    font-weight: 700;
    border-radius: 0.9rem;
    box-shadow: 0 0 24px rgba(46, 204, 113, 0.70), 0 4px 16px rgba(0, 0, 0, 0.40);
    transition: all 0.4s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

    .golf-btn-glow:hover:not(:disabled)[b-nmh33o57nv] {
        background-position: right center;
        transform: translateY(-3px);
        border-color: rgba(255, 255, 255, 0.55);
        box-shadow: 0 0 44px rgba(46, 204, 113, 0.90), 0 6px 24px rgba(0, 0, 0, 0.45);
        color: #fff;
    }

    .golf-btn-glow:disabled[b-nmh33o57nv] {
        opacity: 0.55;
        box-shadow: none;
    }

.btn-outline-light[b-nmh33o57nv] {
    border: 2px solid rgba(255, 255, 255, 0.80);
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    font-weight: 600;
    border-radius: 0.9rem;
    transition: all 0.25s ease;
}

    .btn-outline-light:hover[b-nmh33o57nv] {
        background: rgba(255, 255, 255, 0.20);
        border-color: #fff;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.30);
    }

@media (max-width: 576px) {
    .feedback-card[b-nmh33o57nv] {
        padding: 1.25rem;
    }
}
/* /Components/Pages/Login.razor.rz.scp.css */
/* Login.razor.css – modern, about-page-aligned auth styles */

/* ── Background ────────────────────────────────────────────────── */
.login-bg[b-mc0dkjlenj] {
    background: linear-gradient(135deg, #0a3d2e 0%, #0f5c40 35%, #1a7a55 65%, #0a3d2e 100%);
    background-attachment: scroll; /* fixed is broken on iOS Safari – use scroll */
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
}

    .login-bg[b-mc0dkjlenj]::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
            radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

/* ── Keyframes ─────────────────────────────────────────────────── */
@keyframes cardFadeUp-b-mc0dkjlenj {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes float-b-mc0dkjlenj {
    0%,  100% { transform: translateY(0)     rotate(0deg);  }
    33%       { transform: translateY(-14px) rotate(5deg);  }
    66%       { transform: translateY(-7px)  rotate(-3deg); }
}

@keyframes expandWidth-b-mc0dkjlenj {
    from { width: 0;    opacity: 0; }
    to   { width: 80px; opacity: 1; }
}

/* ── Card ──────────────────────────────────────────────────────── */
.auth-card[b-mc0dkjlenj] {
    animation: cardFadeUp-b-mc0dkjlenj 0.7s ease both;
}

.golf-card[b-mc0dkjlenj] {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

    .golf-card:hover[b-mc0dkjlenj] {
        transform: translateY(-4px);
        box-shadow: 0 28px 72px rgba(0, 0, 0, 0.6);
        border-color: rgba(255, 215, 0, 0.28);
    }

/* ── Floating icon ─────────────────────────────────────────────── */
.auth-icon-container[b-mc0dkjlenj] {
    display: inline-block;
    animation: float-b-mc0dkjlenj 5s ease-in-out infinite;
}

.auth-icon[b-mc0dkjlenj] {
    font-size: 3rem;
    display: block;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}

/* ── Title ─────────────────────────────────────────────────────── */
.auth-title[b-mc0dkjlenj] {
    font-family: 'Anton', Impact, sans-serif;
    font-size: 2.2rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ── Gold divider ──────────────────────────────────────────────── */
.auth-divider[b-mc0dkjlenj] {
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    border-radius: 2px;
    width: 0;
    opacity: 0;
    animation: expandWidth-b-mc0dkjlenj 0.9s ease 0.35s forwards;
}

/* ── Inputs ─────────────────────────────────────────────────────── */
.golf-input[b-mc0dkjlenj] {
    background: rgba(0, 0, 0, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    border-radius: 0.75rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .golf-input:focus[b-mc0dkjlenj] {
        border-color: #198754 !important;
        box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.22) !important;
    }

    .golf-input[b-mc0dkjlenj]::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

/* ── Primary CTA button ────────────────────────────────────────── */
.golf-btn-glow[b-mc0dkjlenj] {
    background: linear-gradient(90deg, #198754, #2e7d32, #146c43, #198754);
    background-size: 300% 100%;
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 0.75rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-position 0.4s ease;
    box-shadow: 0 0 20px rgba(25, 135, 84, 0.5);
}

    .golf-btn-glow:hover:not(:disabled)[b-mc0dkjlenj] {
        transform: translateY(-3px);
        box-shadow: 0 0 40px rgba(25, 135, 84, 0.85);
        background-position: right center;
        color: #fff;
    }

    .golf-btn-glow:disabled[b-mc0dkjlenj] {
        opacity: 0.6;
    }

/* ── "or" divider ──────────────────────────────────────────────── */
.auth-or-divider[b-mc0dkjlenj] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .auth-or-divider[b-mc0dkjlenj]::before,
    .auth-or-divider[b-mc0dkjlenj]::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(255, 255, 255, 0.18);
    }

.auth-or-text[b-mc0dkjlenj] {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── Error message ─────────────────────────────────────────────── */
.auth-error[b-mc0dkjlenj] {
    color: rgba(255, 120, 120, 0.95);
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

/* ── "Forgot password" link ─────────────────────────────────────── */
.hover-glow:hover[b-mc0dkjlenj] {
    color: #ffc107 !important;
    text-shadow: 0 0 6px rgba(255, 193, 7, 0.3);
}

/* ── Helpers ────────────────────────────────────────────────────── */
.text-white-75[b-mc0dkjlenj] {
    color: rgba(255, 255, 255, 0.75);
}

.text-white-50[b-mc0dkjlenj] {
    color: rgba(255, 255, 255, 0.5);
}

/* ── Google Sign-In button ──────────────────────────────────────── */
.btn-google[b-mc0dkjlenj] {
    background: #ffffff;
    color: #3c4043;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.01rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

    .btn-google:hover:not(:disabled)[b-mc0dkjlenj] {
        background: #f1f3f4;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
        transform: translateY(-2px);
        color: #3c4043;
    }

    .btn-google:active:not(:disabled)[b-mc0dkjlenj] {
        transform: translateY(0);
    }

    .btn-google:disabled[b-mc0dkjlenj] {
        opacity: 0.65;
    }
/* /Components/Pages/LogScore.razor.rz.scp.css */
/* ── Log Score page ─────────────────────────────────────────────────────────── */

.log-score-bg[b-65jelag8st] {
    background: linear-gradient(160deg, #0d1f14 0%, #0a1a10 40%, #071209 100%);
}

.log-score-hero[b-65jelag8st] {
    background: linear-gradient(135deg, #0a3d2e 0%, #0f5c40 40%, #1a7a55 70%, #0a3d2e 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    position: relative;
}

    .log-score-hero[b-65jelag8st]::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 70% 50%, rgba(255, 215, 0, 0.06) 0%, transparent 65%);
        pointer-events: none;
    }

/* Back link */
.back-link[b-65jelag8st] {
    font-size: 0.85rem;
    color: rgba(248, 253, 250, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

    .back-link:hover[b-65jelag8st] {
        color: #2ecc71;
    }

/* Main card */
.log-score-card[b-65jelag8st] {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 20px;
}

/* Form inputs */
.log-score-input[b-65jelag8st] {
    background: rgba(0, 0, 0, 0.45) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 0.6rem;
}

    .log-score-input:focus[b-65jelag8st] {
        border-color: #198754 !important;
        box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.2) !important;
    }

    .log-score-input[b-65jelag8st]::placeholder {
        color: rgba(255, 255, 255, 0.35) !important;
    }

    .log-score-input option[b-65jelag8st] {
        background: #0d1f14;
        color: #ffffff;
    }

.log-score-input[type="date"][b-65jelag8st]::-webkit-calendar-picker-indicator {
    filter: invert(0.7);
    cursor: pointer;
}

/* Round type toggle buttons */
.score-type-btn[b-65jelag8st] {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(248, 253, 250, 0.7);
    border-radius: 0.5rem;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.35rem 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

    .score-type-btn:hover[b-65jelag8st] {
        background: rgba(46, 204, 113, 0.12);
        border-color: rgba(46, 204, 113, 0.35);
        color: #2ecc71;
    }

    .score-type-btn.score-type-active[b-65jelag8st] {
        background: rgba(46, 204, 113, 0.2);
        border-color: #2ecc71;
        color: #2ecc71;
        font-weight: 600;
    }

/* Submit button */
.log-score-submit-btn[b-65jelag8st] {
    background: linear-gradient(90deg, #1b8e5f, #2e9d6e);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 0.6rem;
    padding: 0.55rem 1rem;
    transition: all 0.25s ease;
}

    .log-score-submit-btn:hover:not(:disabled)[b-65jelag8st] {
        box-shadow: 0 0 18px rgba(46, 204, 113, 0.5);
        transform: translateY(-1px);
    }

    .log-score-submit-btn:disabled[b-65jelag8st] {
        opacity: 0.55;
    }

/* Tee badge */
.tee-badge[b-65jelag8st] {
    font-size: 0.72rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(248, 253, 250, 0.65);
    border-radius: 0.35rem;
    padding: 0.1rem 0.5rem;
    font-weight: 500;
}

/* Score type pill */
.score-type-pill[b-65jelag8st] {
    font-size: 0.72rem;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.25);
    color: #2ecc71;
    border-radius: 0.35rem;
    padding: 0.1rem 0.45rem;
}

/* ── SCORECARD ─────────────────────────────────────────────────────────────── */

.sc-section-label[b-65jelag8st] {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(248, 253, 250, 0.45);
    margin-bottom: 0.5rem;
}

.sc-wrapper[b-65jelag8st] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 0.5rem;
}

.sc-table[b-65jelag8st] {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.sc-col-label[b-65jelag8st] {
    width: 3.5rem;
}

.sc-col-hole[b-65jelag8st] {
    min-width: 2.6rem;
}

.sc-col-total[b-65jelag8st] {
    width: 3rem;
}

/* Header row */
.sc-table thead tr[b-65jelag8st] {
    background: rgba(0, 0, 0, 0.35);
}

.sc-table th[b-65jelag8st] {
    padding: 0.4rem 0.25rem;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(248, 253, 250, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sc-label-cell[b-65jelag8st] {
    text-align: left !important;
    padding-left: 0.6rem !important;
    color: rgba(248, 253, 250, 0.5) !important;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.sc-total-cell[b-65jelag8st] {
    background: rgba(0, 0, 0, 0.25);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem !important;
    text-align: center;
}

.sc-cell[b-65jelag8st] {
    text-align: center;
    padding: 0.35rem 0.2rem;
}

/* Info rows (par, yds, hdcp) */
.sc-row-info td[b-65jelag8st] {
    padding: 0.3rem 0.25rem;
    text-align: center;
    color: rgba(248, 253, 250, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.78rem;
}

.sc-yds[b-65jelag8st] {
    color: rgba(248, 253, 250, 0.4) !important;
    font-size: 0.72rem !important;
}

.sc-hdcp[b-65jelag8st] {
    color: rgba(248, 253, 250, 0.35) !important;
    font-size: 0.72rem !important;
}

/* Score input row */
.sc-row-score td[b-65jelag8st] {
    padding: 0.3rem 0.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sc-input-cell[b-65jelag8st] {
    text-align: center;
    transition: background 0.2s ease;
}

.sc-input[b-65jelag8st] {
    width: 2.4rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.4rem;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 0;
    outline: none;
    -moz-appearance: textfield;
}

    .sc-input[b-65jelag8st]::-webkit-outer-spin-button,
    .sc-input[b-65jelag8st]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .sc-input:focus[b-65jelag8st] {
        border-color: #2ecc71;
        box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.25);
    }

    .sc-input[b-65jelag8st]::placeholder {
        color: rgba(255, 255, 255, 0.2);
        font-weight: 400;
    }

.sc-subtotal[b-65jelag8st] {
    font-size: 0.95rem !important;
    color: #ffffff;
}

/* Diff row */
.sc-row-diff td[b-65jelag8st] {
    padding: 0.3rem 0.25rem;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
}

.sc-empty[b-65jelag8st] {
    color: rgba(255, 255, 255, 0.2);
}

/* ── Diff color classes ─────────────────────────────────────────────────── */
.sc-eagle[b-65jelag8st]  { color: #f4c430 !important; }
.sc-birdie[b-65jelag8st] { color: #2ecc71 !important; }
.sc-par[b-65jelag8st]    { color: rgba(248, 253, 250, 0.85); }
.sc-bogey[b-65jelag8st]  { color: #ffa940 !important; }
.sc-double[b-65jelag8st] { color: #ff6b35 !important; }
.sc-triple[b-65jelag8st] { color: #e74c3c !important; }

/* Cell background tints when a score vs par is known */
.sc-input-cell.sc-eagle[b-65jelag8st]  { background: rgba(244, 196, 48, 0.12); }
.sc-input-cell.sc-birdie[b-65jelag8st] { background: rgba(46, 204, 113, 0.12); }
.sc-input-cell.sc-double[b-65jelag8st] { background: rgba(255, 107, 53, 0.1); }
.sc-input-cell.sc-triple[b-65jelag8st] { background: rgba(231, 76, 60, 0.1); }

/* Live total bar */
.sc-live-total[b-65jelag8st] {
    font-size: 0.85rem;
    color: rgba(248, 253, 250, 0.6);
}

.sc-total-num[b-65jelag8st] {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0.25rem;
}

.sc-to-par[b-65jelag8st] {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Grand total row */
.sc-grand-total-row[b-65jelag8st] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.6rem;
    padding: 0.6rem 1rem;
    margin-top: 0.5rem;
}

.sc-grand-label[b-65jelag8st] {
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(248, 253, 250, 0.45);
    font-weight: 600;
    min-width: 3rem;
}

.sc-grand-score[b-65jelag8st] {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
}

.sc-grand-diff[b-65jelag8st] {
    font-size: 0.88rem;
    font-weight: 600;
}

/* ── Stats card ────────────────────────────────────────────────────────── */
.stats-card[b-65jelag8st] {
    border-color: rgba(46, 204, 113, 0.2) !important;
    background: rgba(10, 61, 46, 0.25) !important;
    animation: statsReveal-b-65jelag8st 0.4s ease forwards;
}

@keyframes statsReveal-b-65jelag8st {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.stats-header[b-65jelag8st] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.stats-title[b-65jelag8st] {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.stats-subtitle[b-65jelag8st] {
    font-size: 0.8rem;
    color: rgba(248, 253, 250, 0.55);
}

.stats-score-block[b-65jelag8st] {
    text-align: right;
}

.stats-big-score[b-65jelag8st] {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.stats-to-par[b-65jelag8st] {
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 0.1rem;
}

/* Scoring breakdown */
.stats-section-label[b-65jelag8st] {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(248, 253, 250, 0.4);
    margin-bottom: 0.6rem;
}

.breakdown-row[b-65jelag8st] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.breakdown-badge[b-65jelag8st] {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0.6rem;
    padding: 0.5rem 0.75rem;
    min-width: 4rem;
    border: 1px solid;
    transition: opacity 0.2s ease;
}

.breakdown-zero[b-65jelag8st] {
    opacity: 0.35;
}

.breakdown-count[b-65jelag8st] {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
}

.breakdown-label[b-65jelag8st] {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
}

.sc-eagle-badge[b-65jelag8st]  { background: rgba(244,196,48,0.12);  border-color: rgba(244,196,48,0.35);  color: #f4c430; }
.sc-birdie-badge[b-65jelag8st] { background: rgba(46,204,113,0.12);  border-color: rgba(46,204,113,0.35);  color: #2ecc71; }
.sc-par-badge[b-65jelag8st]    { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); color: rgba(248,253,250,0.8); }
.sc-bogey-badge[b-65jelag8st]  { background: rgba(255,169,64,0.1);   border-color: rgba(255,169,64,0.35);  color: #ffa940; }
.sc-double-badge[b-65jelag8st] { background: rgba(255,107,53,0.1);   border-color: rgba(255,107,53,0.35);  color: #ff6b35; }
.sc-triple-badge[b-65jelag8st] { background: rgba(231,76,60,0.1);    border-color: rgba(231,76,60,0.35);   color: #e74c3c; }

/* Highlight cards (best / worst) */
.stats-highlight-card[b-65jelag8st] {
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    border: 1px solid transparent;
}

.sc-birdie-bg[b-65jelag8st] { background: rgba(46,204,113,0.1);  border-color: rgba(46,204,113,0.25); }
.sc-bogey-bg[b-65jelag8st]  { background: rgba(255,169,64,0.08); border-color: rgba(255,169,64,0.2);  }

.stats-highlight-label[b-65jelag8st] {
    font-size: 0.72rem;
    color: rgba(248,253,250,0.55);
    margin-bottom: 0.2rem;
}

.stats-highlight-value[b-65jelag8st] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.stats-highlight-sub[b-65jelag8st] {
    font-size: 0.78rem;
    color: rgba(248,253,250,0.6);
    margin-top: 0.1rem;
}

/* Handicap diff row */
.stats-hdiff-row[b-65jelag8st] {
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 0.6rem;
    padding: 0.6rem 0.85rem;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 0.2rem;
}

.stats-hdiff-value[b-65jelag8st] {
    font-size: 1rem;
    font-weight: 700;
    color: #2ecc71;
}

/* ── Score history ──────────────────────────────────────────────────────── */
.score-history-list[b-65jelag8st] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.score-history-row[b-65jelag8st] {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    transition: border-color 0.2s ease;
}

    .score-history-row:hover[b-65jelag8st] {
        border-color: rgba(46, 204, 113, 0.2);
    }

.score-history-date[b-65jelag8st] {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(248, 253, 250, 0.9);
    margin-bottom: 0.3rem;
}

.score-history-meta[b-65jelag8st] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.score-tee-badge[b-65jelag8st] {
    font-size: 0.72rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(248, 253, 250, 0.65);
    border-radius: 0.35rem;
    padding: 0.1rem 0.45rem;
}

.score-history-notes[b-65jelag8st] {
    font-size: 0.8rem;
    color: rgba(248, 253, 250, 0.5);
    font-style: italic;
    line-height: 1.4;
}

.score-history-score[b-65jelag8st] {
    font-size: 2rem;
    font-weight: 800;
    color: #2ecc71;
    line-height: 1;
    min-width: 3rem;
    text-align: right;
}

/* Expand/collapse button */
.btn-expand[b-65jelag8st] {
    background: none;
    border: none;
    color: rgba(46, 204, 113, 0.7);
    font-size: 0.72rem;
    cursor: pointer;
    padding: 0.1rem 0.35rem;
    border-radius: 0.3rem;
    transition: color 0.2s ease;
}

    .btn-expand:hover[b-65jelag8st] {
        color: #2ecc71;
        background: rgba(46, 204, 113, 0.08);
    }

/* Mini scorecard (in history) */
.mini-scorecard-wrapper[b-65jelag8st] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.mini-scorecard-table[b-65jelag8st] {
    width: 100%;
    min-width: 360px;
    border-collapse: collapse;
    font-size: 0.7rem;
    /* Fixed layout makes all hole columns equal width so OUT and IN align */
    table-layout: fixed;
}

    .mini-scorecard-table th[b-65jelag8st],
    .mini-scorecard-table td[b-65jelag8st] {
        text-align: center;
        padding: 0.25rem 0.3rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: rgba(248, 253, 250, 0.65);
        overflow: hidden;
        white-space: nowrap;
    }

    .mini-scorecard-table th[b-65jelag8st] {
        color: rgba(248, 253, 250, 0.4);
        font-weight: 600;
        font-size: 0.65rem;
    }

    /* Pin the label and total columns; the 9 hole columns share the rest equally */
    .mini-scorecard-table th:first-child[b-65jelag8st],
    .mini-scorecard-table td:first-child[b-65jelag8st] {
        width: 46px;
        text-align: left;
    }

    .mini-scorecard-table .mini-total[b-65jelag8st] {
        width: 42px;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(0, 0, 0, 0.2);
    }

    /* Bold the score row so it stands out from the par row */
    .mini-scorecard-table tr:last-child td[b-65jelag8st] {
        font-weight: 700;
        color: rgba(248, 253, 250, 0.9);
    }

/* ── Misc shared ────────────────────────────────────────────────────────── */
.golf-btn-glow[b-65jelag8st] {
    background: linear-gradient(90deg, #198754, #2e7d32, #146c43, #198754);
    background-size: 300% 100%;
    border: none;
    color: white;
    font-weight: bold;
    transition: all 0.6s ease;
    box-shadow: 0 0 25px rgba(25, 135, 84, 0.7);
}

    .golf-btn-glow:hover[b-65jelag8st] {
        transform: translateY(-4px);
        box-shadow: 0 0 50px rgba(25, 135, 84, 1);
        background-position: right center;
        color: white;
    }

.text-white-25[b-65jelag8st] {
    color: rgba(248, 253, 250, 0.25) !important;
}

.golf-title[b-65jelag8st] {
    font-family: 'Barlow Condensed', Arial Narrow, sans-serif;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* /Components/Pages/Map.razor.rz.scp.css */
#golfMap[b-zfzw3wstij] {
    height: 100% !important;
    width: 100%;
    background-color: #aad3df;
}

/* Leaflet container */
.leaflet-container[b-zfzw3wstij] {
    height: 100% !important;
    width: 100% !important;
}

/* Course name labels */
[b-zfzw3wstij] .course-label {
    background: white;
    border: 1px solid #1a5c0a;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

[b-zfzw3wstij] .course-label-unified {
    background-color: #306341 !important;
    color: white !important;
    border: 1.5px solid #1a5c0a !important;
    border-radius: 9999px !important;
    padding: 7px 12px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4) !important;
    white-space: nowrap;
    line-height: 1.4;
}

    [b-zfzw3wstij] .course-label-unified:hover,
    [b-zfzw3wstij] .leaflet-marker-icon:hover + .leaflet-tooltip-pane .course-label-unified {
        transform: scale(1.3) !important;
        z-index: 2000 !important;
        background-color: #24820e !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.5) !important;
        cursor: pointer;
    }

/* Tooltip cleanup */
[b-zfzw3wstij] .leaflet-tooltip-top.course-label-unified:before {
    border-top-color: #1a5c0a !important;
}

[b-zfzw3wstij] .leaflet-tooltip.course-label-unified {
    margin-top: -8px !important;
}

    [b-zfzw3wstij] .leaflet-tooltip.course-label-unified:before,
    [b-zfzw3wstij] .leaflet-tooltip.course-label-unified:after {
        border: none !important;
        content: none !important;
    }

/* Clusters */
[b-zfzw3wstij] .marker-cluster-small,
[b-zfzw3wstij] .marker-cluster-medium,
[b-zfzw3wstij] .marker-cluster-large {
    background-color: rgba(26, 92, 10, 0.6) !important;
}

    [b-zfzw3wstij] .marker-cluster-small div,
    [b-zfzw3wstij] .marker-cluster-medium div,
    [b-zfzw3wstij] .marker-cluster-large div {
        background-color: rgba(26, 92, 10, 0.9) !important;
        color: white !important;
    }

/* ────────────────────────────────────────────────
   Course info card – strongest possible selector
───────────────────────────────────────────────── */

/* Target the card specifically when inside #golfMap */
#golfMap .course-info-card[b-zfzw3wstij],
#golfMap div.course-info-card[b-zfzw3wstij] {
    position: absolute !important;
    background: rgb(12, 38, 28) !important; /* solid dark green – no transparency */
    backdrop-filter: blur(14px) !important; /* still blurred, but less dominant */
    -webkit-backdrop-filter: blur(14px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 1.25rem !important;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.75) !important;
    color: #f8fdfa !important;
    padding: 1.4rem 1.6rem !important;
    min-width: 280px !important;
    max-width: 360px !important;
    z-index: 6000 !important;
    pointer-events: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

    /* Force child elements */
    #golfMap .course-info-card *[b-zfzw3wstij],
    #golfMap .course-info-card h5[b-zfzw3wstij],
    #golfMap .course-info-card p[b-zfzw3wstij],
    #golfMap .course-info-card span[b-zfzw3wstij] {
        color: #f8fdfa !important;
    }

    #golfMap .course-info-card .golf-subtitle[b-zfzw3wstij] {
        color: #c8e6c9 !important;
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
        letter-spacing: 1.2px !important;
    }

    #golfMap .course-info-card .text-white-75[b-zfzw3wstij] {
        color: #e0f0e8 !important; /* slightly brighter for contrast */
    }

    #golfMap .course-info-card .badge[b-zfzw3wstij] {
        font-size: 0.85rem !important;
        padding: 0.5em 0.9em !important;
        margin: 0.3rem !important;
    }

    /* Hover effect still works */
    #golfMap .course-info-card:hover[b-zfzw3wstij] {
        transform: translateY(-6px) !important;
        box-shadow: 0 24px 70px rgba(0,0,0,0.8) !important;
    }

    /* Links */
    #golfMap .course-info-card a[b-zfzw3wstij] {
        color: #2ecc71 !important;
    }

    #golfMap .course-info-card a.dashboard-link[b-zfzw3wstij] {
        color: #fff !important;
        background-color: #1b8e5f;
        text-decoration: none !important;
    }

        #golfMap .course-info-card a.dashboard-link:hover[b-zfzw3wstij] {
            background-color: #27ae60 !important;
            color: #fff !important;
            text-decoration: none !important;
        }

        #golfMap .course-info-card a:hover[b-zfzw3wstij] {
            color: #27ae60 !important;
            text-decoration: underline !important;
        }
/* /Components/Pages/Profile.razor.rz.scp.css */
/* Profile.razor.css – All Postgres, no Firebase Storage needed */

body[b-trxp79lzib], html[b-trxp79lzib] {
    margin: 0;
    padding: 0;
    height: 100%;
}

.profile-main[b-trxp79lzib] {
    background: radial-gradient(circle at 15% 85%, rgba(28, 68, 52, 0.92) 0%, rgba(10, 45, 32, 0.96) 45%, #0a2d22 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-height: 100vh;
    min-height: 100dvh;
    color: #f8fdfa;
}

.profile-bg[b-trxp79lzib] {
    background: linear-gradient(145deg, #0a3d2e 0%, #0f5c40 40%, #1a7a55 70%, #0a3d2e 100%);
    background-attachment: scroll; /* fixed is broken on iOS Safari – use scroll */
    background-size: 140% 140%;
    animation: slowDrift-b-trxp79lzib 28s ease infinite;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
}

    .profile-bg[b-trxp79lzib]::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.04) 0%, transparent 60%);
        pointer-events: none;
        opacity: 0.7;
    }

@keyframes slowDrift-b-trxp79lzib {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.golf-sidebar[b-trxp79lzib] {
    background: rgba(8, 48, 34, 0.94) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-right: 1px solid rgba(255,255,255,0.06);
    box-shadow: 4px 0 20px rgba(0,0,0,0.4);
}

    .golf-sidebar .nav-link[b-trxp79lzib] {
        border-radius: 0.8rem;
        padding: 1.1rem 1.5rem;
        margin: 0.4rem 0;
        transition: all 0.25s ease;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

        .golf-sidebar .nav-link:hover[b-trxp79lzib] {
            background: rgba(255,255,255,0.08);
            transform: translateX(8px);
            box-shadow: 0 3px 14px rgba(25,135,84,0.2);
        }

        .golf-sidebar .nav-link.active[b-trxp79lzib] {
            background: linear-gradient(90deg, #198754, #2e8b57) !important;
            box-shadow: 0 5px 20px rgba(25,135,84,0.6);
            transform: translateX(5px);
            color: white !important;
        }

.golf-card[b-trxp79lzib] {
    background: rgba(12, 38, 28, 0.86) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.5rem;
    box-shadow: 0 14px 48px rgba(0,0,0,0.55);
    transition: all 0.3s ease;
    padding: 2rem 2.25rem;
}

    .golf-card:hover[b-trxp79lzib] {
        transform: translateY(-6px);
        box-shadow: 0 22px 64px rgba(0,0,0,0.65);
    }

.golf-title[b-trxp79lzib] {
    letter-spacing: 2.4px;
    text-shadow: 0 4px 16px rgba(0,0,0,0.8), 0 0 18px rgba(25,135,84,0.15);
    color: #ffffff;
    margin-bottom: 0 !important;
    line-height: 1.1;
}

.golf-subtitle[b-trxp79lzib] {
    font-family: 'Anton', sans-serif;
    letter-spacing: 1.5px;
    color: #c8e6c9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.65);
    font-size: 1.5rem;
    margin-bottom: 1.8rem !important;
}

.profile-header[b-trxp79lzib] {
    padding-bottom: 2.5rem !important;
    margin-bottom: 3rem !important;
}

.profile-avatar[b-trxp79lzib] {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 7px solid rgba(25,135,84,0.8);
    box-shadow: 0 0 40px rgba(25,135,84,0.5), inset 0 0 14px rgba(255,255,255,0.1);
    transition: all 0.35s ease;
    margin-bottom: 2rem !important;
}

    .profile-avatar:hover[b-trxp79lzib] {
        transform: scale(1.07) rotate(2deg);
        box-shadow: 0 0 58px rgba(25,135,84,0.7);
    }

/* Profile pic upload button - positioned over bottom-right of avatar */
.profile-pic-upload-btn[b-trxp79lzib] {
    position: absolute !important;
    bottom: -12px;
    right: -12px;
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #198754, #2e9d6e) !important;
    border: 4px solid #ffffffe0;
    color: white !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(25, 135, 84, 0.5), inset 0 2px 8px rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.28s ease;
    z-index: 10;
    animation: subtlePulse-b-trxp79lzib 2.5s infinite ease-in-out;
}

    .profile-pic-upload-btn:hover[b-trxp79lzib] {
        transform: scale(1.18) translateY(-2px);
        box-shadow: 0 10px 30px rgba(25, 135, 84, 0.7), inset 0 3px 12px rgba(255,255,255,0.4);
        animation: none;
    }
    @keyframes subtlePulse-b-trxp79lzib {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.06); }
}

.info-display[b-trxp79lzib] {
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.8rem;
    padding: 1.1rem 1.5rem;
    color: #f0fff4;
    font-size: 1.12rem;
    min-height: 54px;
    display: flex;
    align-items: center;
    box-shadow: inset 0 1px 5px rgba(0,0,0,0.35);
}

    .info-display.important[b-trxp79lzib] {
        color: #ffeb3b !important; /* Gold instead of red for better contrast */
        background: rgba(255,235,59,0.15) !important;
        border-color: rgba(255,235,59,0.3) !important;
        font-weight: 700;
        font-size: 1.2rem;
    }

.form-label[b-trxp79lzib] {
    color: #e8f5e9;
    font-weight: 600;
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.golf-input[b-trxp79lzib] {
    background: rgba(0,0,0,0.5) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: #ffffff !important;
    border-radius: 0.75rem;
    padding: 0.9rem 1.3rem;
    font-size: 1.1rem;
}

    .golf-input:focus[b-trxp79lzib] {
        border-color: #198754 !important;
        box-shadow: 0 0 0 0.3rem rgba(25,135,84,0.25) !important;
    }
    .golf-input[b-trxp79lzib]::placeholder {
        color: rgba(255, 255, 255, 0.85) !important; /* bright white-ish */
        opacity: 1 !important; /* override Bootstrap's opacity:0.5 */
    }

.unauth-card[b-trxp79lzib] {
    background: rgba(12, 38, 28, 0.89) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.6rem;
    box-shadow: 0 24px 70px rgba(0,0,0,0.65);
    max-width: 500px;
    padding: 3.5rem 3rem;
}

.golf-btn-glow[b-trxp79lzib] {
    background: linear-gradient(90deg, #1b8e5f, #2e9d6e, #1b8e5f);
    background-size: 220% 100%;
    border: none;
    color: white;
    font-weight: 700;
    box-shadow: 0 0 18px rgba(27,142,95,0.6);
    transition: all 0.55s ease;
    border-radius: 0.9rem;
    font-size: 1.05rem;
    padding: 0.65rem 1.5rem;
    min-width: 140px;
}

    .golf-btn-glow:hover:not(:disabled)[b-trxp79lzib] {
        transform: translateY(-4px);
        box-shadow: 0 0 40px rgba(27,142,95,0.85);
        background-position: right center;
    }

    .golf-btn-glow:disabled[b-trxp79lzib] {
        opacity: 0.55;
        box-shadow: none;
    }

.btn-outline-light[b-trxp79lzib] {
    font-size: 1.05rem;
    padding: 0.65rem 1.5rem;
    min-width: 140px;
}

/* Text utilities */
.text-white-90[b-trxp79lzib] {
    color: rgba(255,255,255,0.92) !important;
}

.text-white-75[b-trxp79lzib] {
    color: rgba(255,255,255,0.78) !important;
}

.text-white-60[b-trxp79lzib] {
    color: rgba(255,255,255,0.62) !important;
}

.white-space-pre-wrap[b-trxp79lzib] {
    white-space: pre-wrap;
}

.row.g-5[b-trxp79lzib] {
    --bs-gutter-x: 2.5rem;
    --bs-gutter-y: 2.5rem;
}

/* Error alert */
.alert[b-trxp79lzib] {
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
}
/* Fix dropdowns appearing behind cards/sections */
.profile-main .list-group.position-absolute[b-trxp79lzib] {
    z-index: 2000 !important; /* Higher than cards (usually ~1–10) and most Bootstrap elements */
}

/* Optional: make sure all suggestion dropdowns benefit (course + hometown too) */
.profile-main .list-group.position-absolute[b-trxp79lzib] {
    z-index: 2000 !important;
    background-color: #0c261c !important; /* match your dark theme if needed */
}

/* Extra insurance if still hidden behind something */
.profile-main .golf-card[b-trxp79lzib] {
    position: relative;
    z-index: 10; /* keep cards below dropdowns */
}






/* Additions/Expansions to Profile.razor.css for Golf Stats Dashboard */

/* Dashboard Card Enhancements */
.dashboard-card[b-trxp79lzib] {
    border-radius: 1.2rem;
    transition: all 0.4s ease;
}

    .dashboard-card:hover[b-trxp79lzib] {
        transform: translateY(-8px);
        box-shadow: 0 28px 72px rgba(0,0,0,0.7);
    }

/* Card Glow Effect */
.card-glow[b-trxp79lzib] {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(25,135,84,0.15) 0%, transparent 70%);
    opacity: 0.6;
    pointer-events: none;
    animation: glowPulse-b-trxp79lzib 8s infinite ease-in-out;
}

@keyframes glowPulse-b-trxp79lzib {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Stat Icons */
.stat-icon[b-trxp79lzib] {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

    .stat-icon:hover[b-trxp79lzib] {
        transform: rotate(5deg) scale(1.1);
    }

/* Progress Bar Enhancements */
.progress[b-trxp79lzib] {
    border-radius: 50rem !important;
}

.progress-bar[b-trxp79lzib] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    transition: width 1s ease-in-out;
}

/* Color Subtles for Icons */
.bg-success-subtle[b-trxp79lzib] {
    background: rgba(40,167,69,0.15) !important;
}

.bg-info-subtle[b-trxp79lzib] {
    background: rgba(0,123,255,0.15) !important;
}

.bg-warning-subtle[b-trxp79lzib] {
    background: rgba(255,193,7,0.15) !important;
}

.bg-danger-subtle[b-trxp79lzib] {
    background: rgba(220,53,69,0.15) !important;
}

/* Shadow XL for Depth */
.shadow-xl[b-trxp79lzib] {
    box-shadow: 0 20px 60px rgba(0,0,0,0.6) !important;
}







/* Additions to Profile.razor.css for Friends Section */
.border-white-10[b-trxp79lzib] {
    border-color: rgba(255,255,255,0.1) !important;
}

/* Ensure list-group items blend with theme */
.list-group-item[b-trxp79lzib] {
    background: rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.08);
    color: #f8fdfa;
}

    .list-group-item:hover[b-trxp79lzib] {
        background: rgba(255,255,255,0.05);
    }

/* Admin divider in sidebar */
.admin-divider[b-trxp79lzib] {
    border-top: 1px solid rgba(255, 193, 7, 0.25);
}

/* Submission cards in admin review */
.submission-card[b-trxp79lzib] {
    border-color: rgba(255,255,255,0.1) !important;
}

.submission-type-badge[b-trxp79lzib] {
    background: rgba(25, 135, 84, 0.3);
    color: #a8f0c8;
    border: 1px solid rgba(25, 135, 84, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.submission-field-label[b-trxp79lzib] {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    margin-right: 0.35rem;
}

/* dashboard-link re-export for Profile page */
.dashboard-link[b-trxp79lzib] {
    color: #2ecc71 !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .dashboard-link:hover[b-trxp79lzib] {
        color: #27ae60 !important;
        text-decoration: underline;
    }

/* Per-field apply button in admin review */
.btn-xs[b-trxp79lzib] {
    padding: 0.15rem 0.55rem;
    font-size: 0.75rem;
    line-height: 1.4;
    border-radius: 0.4rem;
}

.field-apply-btn[b-trxp79lzib] {
    background: rgba(25, 135, 84, 0.2);
    border: 1px solid rgba(25, 135, 84, 0.5);
    color: #7ddb9f;
    white-space: nowrap;
    transition: all 0.2s ease;
}

    .field-apply-btn:hover:not(:disabled)[b-trxp79lzib] {
        background: rgba(25, 135, 84, 0.45);
        border-color: #2ecc71;
        color: #fff;
    }

    .field-apply-btn:disabled[b-trxp79lzib] {
        opacity: 0.5;
        cursor: not-allowed;
    }

.field-apply-btn.field-applied[b-trxp79lzib] {
    background: rgba(25, 135, 84, 0.35) !important;
    border-color: #2ecc71 !important;
    color: #a8f0c8 !important;
    opacity: 1 !important;
}
/* ─────────────────────────────────────────────────────────────────────────────
   Golf Stats Dashboard  (gs-* prefix, scoped to Profile.razor)
───────────────────────────────────────────────────────────────────────────── */

/* Tab bar */
.gs-tabs[b-trxp79lzib] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.gs-tab[b-trxp79lzib] {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    border-radius: 0.75rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.03em;
}

    .gs-tab:hover[b-trxp79lzib] {
        background: rgba(46,204,113,0.15);
        border-color: rgba(46,204,113,0.35);
        color: #7ddb9f;
    }

.gs-tab-active[b-trxp79lzib] {
    background: linear-gradient(135deg, rgba(25,135,84,0.7), rgba(46,204,113,0.5));
    border-color: rgba(46,204,113,0.6) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(25,135,84,0.35);
}

/* Hero cards */
.gs-hero-label[b-trxp79lzib] {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.gs-hero-num[b-trxp79lzib] {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1;
    margin: 0.2rem 0;
    letter-spacing: -1px;
}

.gs-hero-watermark[b-trxp79lzib] {
    font-size: 5rem;
    opacity: 0.06;
    right: -10px;
    bottom: -10px;
    pointer-events: none;
}

/* Handicap tier badges */
.gs-badge[b-trxp79lzib] {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.gs-badge-gold[b-trxp79lzib]  { background: rgba(255,215,0,0.2);  color: #ffd700; border: 1px solid rgba(255,215,0,0.4); }
.gs-badge-green[b-trxp79lzib] { background: rgba(46,204,113,0.2); color: #2ecc71; border: 1px solid rgba(46,204,113,0.4); }
.gs-badge-blue[b-trxp79lzib]  { background: rgba(13,202,240,0.15); color: #0dcaf0; border: 1px solid rgba(13,202,240,0.35); }

/* Score distribution cells */
.gs-dist-cell[b-trxp79lzib] {
    padding: 1rem 0.5rem;
    border-radius: 1rem;
    border: 1px solid transparent;
    transition: transform 0.2s ease;
}

    .gs-dist-cell:hover[b-trxp79lzib] { transform: translateY(-4px); }

.gs-dist-icon[b-trxp79lzib]  { font-size: 1.5rem; margin-bottom: 0.4rem; }
.gs-dist-count[b-trxp79lzib] { font-size: 1.8rem; font-weight: 900; line-height: 1; }
.gs-dist-pct[b-trxp79lzib]   { font-size: 0.85rem; font-weight: 700; opacity: 0.8; margin-top: 0.1rem; }
.gs-dist-label[b-trxp79lzib] { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.07em; opacity: 0.6; margin-top: 0.2rem; }

.gs-dist-eagle[b-trxp79lzib] { background: rgba(46,204,113,0.12); border-color: rgba(46,204,113,0.22); color: #2ecc71; }
.gs-dist-par[b-trxp79lzib]   { background: rgba(13,202,240,0.1);  border-color: rgba(13,202,240,0.2);  color: #0dcaf0; }
.gs-dist-bogey[b-trxp79lzib] { background: rgba(255,193,7,0.1);   border-color: rgba(255,193,7,0.2);   color: #ffc107; }
.gs-dist-worse[b-trxp79lzib] { background: rgba(220,53,69,0.1);   border-color: rgba(220,53,69,0.2);   color: #dc3545; }

/* Trend SVG chart */
.gs-trend-wrap[b-trxp79lzib] {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.gs-trend-svg[b-trxp79lzib] {
    width: 100%;
    min-width: 300px;
    height: auto;
    display: block;
}

/* Best shot list items */
.gs-shot-item[b-trxp79lzib] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.1rem;
    background: rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 0.9rem;
    margin-bottom: 0.65rem;
    transition: all 0.2s ease;
}

    .gs-shot-item:hover[b-trxp79lzib] {
        border-color: rgba(46,204,113,0.3);
        background: rgba(46,204,113,0.05);
    }

.gs-shot-rank[b-trxp79lzib]   { font-size: 1.1rem; font-weight: 900; min-width: 32px; text-align: center; opacity: 0.45; }
.gs-shot-result[b-trxp79lzib] { font-size: 0.95rem; font-weight: 800; min-width: 74px; text-align: center; border-radius: 0.55rem; padding: 0.3rem 0.2rem; }
.gs-shot-info[b-trxp79lzib]   { flex: 1; }
.gs-shot-hole[b-trxp79lzib]   { font-size: 0.95rem; font-weight: 700; color: #f8fdfa; }
.gs-shot-meta[b-trxp79lzib]   { font-size: 0.76rem; color: rgba(255,255,255,0.5); margin-top: 0.15rem; }

.gs-shot-eagle[b-trxp79lzib]  { background: rgba(255,215,0,0.2);  color: #ffd700; }
.gs-shot-birdie[b-trxp79lzib] { background: rgba(46,204,113,0.2); color: #2ecc71; }
.gs-shot-par[b-trxp79lzib]    { background: rgba(13,202,240,0.15); color: #0dcaf0; }
.gs-shot-bogey[b-trxp79lzib]  { background: rgba(255,193,7,0.15); color: #ffc107; }

/* Par type breakdown cards */
.gs-par-card[b-trxp79lzib] {
    text-align: center;
    padding: 1.4rem 1rem;
    border-radius: 1.1rem;
    background: rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.2s ease;
}

    .gs-par-card:hover[b-trxp79lzib] { transform: translateY(-4px); }

.gs-par-type[b-trxp79lzib] { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.gs-par-num[b-trxp79lzib]  { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.gs-par-avg[b-trxp79lzib]  { font-size: 0.82rem; font-weight: 600; margin-top: 0.25rem; }

/* Advanced metric rows */
.gs-metric-row[b-trxp79lzib] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

    .gs-metric-row:last-child[b-trxp79lzib] { border-bottom: none; }

.gs-metric-label[b-trxp79lzib] { font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.gs-metric-value[b-trxp79lzib] { font-size: 1.25rem; font-weight: 800; min-width: 56px; text-align: right; }

.gs-metric-bar[b-trxp79lzib] {
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
}

.gs-metric-bar-fill[b-trxp79lzib] {
    height: 100%;
    border-radius: 999px;
    transition: width 0.8s ease;
}

/* Course performance table */
.gs-course-table[b-trxp79lzib] {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: transparent;
    --bs-table-hover-bg: rgba(255,255,255,0.04);
    --bs-table-color: rgba(255,255,255,0.85);
    color: rgba(255,255,255,0.85);
    background: transparent !important;
    background-color: transparent !important;
}

.gs-course-table thead[b-trxp79lzib],
.gs-course-table tbody[b-trxp79lzib],
.gs-course-table tfoot[b-trxp79lzib],
.gs-course-table tr[b-trxp79lzib],
.gs-course-table th[b-trxp79lzib],
.gs-course-table td[b-trxp79lzib] {
    background: transparent !important;
    background-color: transparent !important;
}

.gs-course-table thead th[b-trxp79lzib] {
    color: rgba(255,255,255,0.45);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    padding-bottom: 0.6rem;
}

.gs-course-table tbody td[b-trxp79lzib] {
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    vertical-align: middle;
}

.gs-course-table tbody tr:last-child td[b-trxp79lzib] { border-bottom: none !important; }

/* Letter-spacing utility */
.ls-1[b-trxp79lzib] { letter-spacing: 0.05em; }

/* Summary strip at the top of the section */
.rr-summary-strip[b-trxp79lzib] {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(12,38,28,0.82);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
}

.rr-summary-item[b-trxp79lzib] {
    flex: 1 1 100px;
    text-align: center;
    padding: 0.25rem 0.5rem;
}

.rr-summary-num[b-trxp79lzib] {
    font-size: 2rem;
    font-weight: 800;
    color: #f8fdfa;
    line-height: 1;
}

.rr-summary-label[b-trxp79lzib] {
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255,255,255,0.5);
    margin-top: 0.2rem;
}

.rr-summary-divider[b-trxp79lzib] {
    width: 1px;
    background: rgba(255,255,255,0.12);
    align-self: stretch;
    margin: 0.25rem 0;
}

/* Round card */
.rr-round-list[b-trxp79lzib] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rr-round-card[b-trxp79lzib] {
    background: rgba(12,38,28,0.82);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
    padding: 1.15rem 1.4rem;
    transition: border-color 0.25s ease;
}

    .rr-round-card:hover[b-trxp79lzib] {
        border-color: rgba(46,204,113,0.3);
    }

/* Card header */
.rr-card-header[b-trxp79lzib] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.rr-card-meta[b-trxp79lzib] {
    flex: 1;
}

.rr-card-date[b-trxp79lzib] {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.15rem;
}

.rr-card-course[b-trxp79lzib] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f8fdfa;
    margin-bottom: 0.25rem;
}

.rr-course-link[b-trxp79lzib] {
    color: #2ecc71 !important;
    text-decoration: none;
}

    .rr-course-link:hover[b-trxp79lzib] {
        text-decoration: underline;
    }

/* Pills */
.rr-pill[b-trxp79lzib] {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.rr-tee-pill[b-trxp79lzib] {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.15);
}

.rr-type-pill[b-trxp79lzib] {
    background: rgba(46,204,113,0.15);
    color: #7ddb9f;
    border: 1px solid rgba(46,204,113,0.3);
}

.rr-expand-btn[b-trxp79lzib] {
    background: none;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    color: rgba(255,255,255,0.65);
    font-size: 0.72rem;
    padding: 0.15rem 0.6rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

    .rr-expand-btn:hover[b-trxp79lzib] {
        border-color: rgba(46,204,113,0.5);
        color: #7ddb9f;
    }

.rr-notes[b-trxp79lzib] {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
}

/* Score block */
.rr-card-score-block[b-trxp79lzib] {
    text-align: right;
    min-width: 70px;
}

.rr-big-score[b-trxp79lzib] {
    font-size: 2.4rem;
    font-weight: 900;
    color: #f8fdfa;
    line-height: 1;
}

.rr-to-par[b-trxp79lzib] {
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 0.1rem;
}

/* Stats strip with badges and highlights */
.rr-stats-strip[b-trxp79lzib] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    align-items: center;
}

.rr-badge[b-trxp79lzib] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.35rem 0.65rem;
    border-radius: 0.6rem;
    min-width: 52px;
    transition: opacity 0.2s;
}

.rr-badge-num[b-trxp79lzib] {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
}

.rr-badge-lbl[b-trxp79lzib] {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.1rem;
    opacity: 0.8;
}

.rr-zero[b-trxp79lzib] { opacity: 0.35; }

.rr-eagle-badge[b-trxp79lzib]  { background: rgba(255,215,0,0.18); color: #ffd700; border: 1px solid rgba(255,215,0,0.3); }
.rr-birdie-badge[b-trxp79lzib] { background: rgba(46,204,113,0.18); color: #2ecc71; border: 1px solid rgba(46,204,113,0.3); }
.rr-par-badge[b-trxp79lzib]    { background: rgba(248,249,250,0.12); color: #f8fdfa; border: 1px solid rgba(255,255,255,0.15); }
.rr-bogey-badge[b-trxp79lzib]  { background: rgba(255,193,7,0.18); color: #ffc107; border: 1px solid rgba(255,193,7,0.3); }
.rr-double-badge[b-trxp79lzib] { background: rgba(253,126,20,0.18); color: #fd7e14; border: 1px solid rgba(253,126,20,0.3); }
.rr-triple-badge[b-trxp79lzib] { background: rgba(220,53,69,0.18); color: #dc3545; border: 1px solid rgba(220,53,69,0.3); }

/* Highlight chips (best / worst / hdiff) */
.rr-highlight[b-trxp79lzib] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.75rem;
    border-radius: 0.6rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.85);
}

.rr-best-hl[b-trxp79lzib]  { background: rgba(46,204,113,0.12); border: 1px solid rgba(46,204,113,0.2); }
.rr-worst-hl[b-trxp79lzib] { background: rgba(220,53,69,0.12);  border: 1px solid rgba(220,53,69,0.2); }
.rr-hdiff-hl[b-trxp79lzib] { background: rgba(13,202,240,0.1);  border: 1px solid rgba(13,202,240,0.2); color: #7dd3fa; }

.rr-hl-sub[b-trxp79lzib] {
    opacity: 0.7;
    font-size: 0.72rem;
}

/* Diff colour helpers (hole cells and to-par text) */
.rr-eagle[b-trxp79lzib]  { color: #ffd700; }
.rr-birdie[b-trxp79lzib] { color: #2ecc71; }
.rr-par[b-trxp79lzib]    { color: #f8fdfa; }
.rr-bogey[b-trxp79lzib]  { color: #ffc107; }
.rr-double[b-trxp79lzib] { color: #fd7e14; }
.rr-triple[b-trxp79lzib] { color: #dc3545; }

/* Mini scorecard table */
.rr-mini-scorecard-wrap[b-trxp79lzib] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.rr-mini-table[b-trxp79lzib] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.85);
    min-width: 420px;
    /* Fixed layout makes all hole columns equal width so OUT and IN align */
    table-layout: fixed;
}

    .rr-mini-table th[b-trxp79lzib] {
        background: rgba(255,255,255,0.06);
        color: rgba(255,255,255,0.5);
        text-align: center;
        padding: 0.25rem 0.4rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        white-space: nowrap;
        overflow: hidden;
    }

    .rr-mini-table td[b-trxp79lzib] {
        text-align: center;
        padding: 0.25rem 0.4rem;
        border-top: 1px solid rgba(255,255,255,0.04);
        white-space: nowrap;
        overflow: hidden;
    }

    /* Pin the label column; the 9 hole columns share remaining space equally */
    .rr-mini-table td:first-child[b-trxp79lzib],
    .rr-mini-table th:first-child[b-trxp79lzib] {
        width: 50px;
        text-align: left;
        font-weight: 700;
        padding-left: 0;
        color: rgba(255,255,255,0.55);
    }

.rr-total-cell[b-trxp79lzib] {
    width: 46px;
    background: rgba(255,255,255,0.05);
    font-weight: 700;
}

/* Bold the score row so it stands out from the par row */
.rr-mini-table tr:last-child td[b-trxp79lzib] {
    font-weight: 700;
    color: rgba(255,255,255,0.95);
}

/* Grand total row below the tables */
.rr-grand-total[b-trxp79lzib] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding: 0.4rem 0.6rem;
    background: rgba(255,255,255,0.05);
    border-radius: 0.5rem;
    font-size: 0.85rem;
}

.rr-gt-label[b-trxp79lzib] {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.45);
}

.rr-gt-score[b-trxp79lzib] {
    font-size: 1.35rem;
    font-weight: 900;
}

.rr-gt-diff[b-trxp79lzib] {
    font-size: 0.85rem;
    font-weight: 700;
}

/* Delete button (top-right of card header) */
.rr-delete-btn[b-trxp79lzib] {
    flex-shrink: 0;
    background: none;
    border: 1px solid rgba(220,53,69,0.3);
    border-radius: 0.5rem;
    color: rgba(220,53,69,0.6);
    font-size: 1rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

    .rr-delete-btn:hover[b-trxp79lzib] {
        background: rgba(220,53,69,0.12);
        border-color: rgba(220,53,69,0.6);
        color: #dc3545;
    }

/* Inline delete confirmation */
.rr-delete-confirm[b-trxp79lzib] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.rr-delete-confirm-text[b-trxp79lzib] {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
}

.rr-delete-confirm-yes[b-trxp79lzib] {
    background: rgba(220,53,69,0.18);
    border: 1px solid rgba(220,53,69,0.5);
    border-radius: 0.5rem;
    color: #dc3545;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

    .rr-delete-confirm-yes:hover[b-trxp79lzib] {
        background: rgba(220,53,69,0.35);
    }

.rr-delete-confirm-no[b-trxp79lzib] {
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0.5rem;
    color: rgba(255,255,255,0.65);
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

    .rr-delete-confirm-no:hover[b-trxp79lzib] {
        border-color: rgba(255,255,255,0.4);
        color: #f8fdfa;
    }

/* Score footer row (bottom-right) */
.rr-card-score-footer[b-trxp79lzib] {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── Achievements ──────────────────────────────────────────────────────────── */

.ach-unlocked-badge[b-trxp79lzib] {
    background: linear-gradient(135deg, rgba(255,193,7,0.18), rgba(255,215,0,0.12));
    color: #ffd700;
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.ach-card[b-trxp79lzib] {
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

    .ach-card:hover[b-trxp79lzib] {
        transform: translateY(-3px);
    }

.ach-card-unlocked[b-trxp79lzib] {
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.22) 0%, rgba(12, 38, 28, 0.88) 100%);
    border: 1px solid rgba(46, 204, 113, 0.35);
    box-shadow: 0 4px 20px rgba(46,204,113,0.12);
}

.ach-card-locked[b-trxp79lzib] {
    background: rgba(12, 38, 28, 0.6);
    border: 1px solid rgba(255,255,255,0.08);
    opacity: 0.82;
}

.ach-icon-wrap[b-trxp79lzib] {
    position: relative;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ach-icon-unlocked[b-trxp79lzib] {
    background: linear-gradient(135deg, rgba(255,215,0,0.22), rgba(25,135,84,0.2));
    border: 1px solid rgba(255,215,0,0.35);
}

.ach-icon-locked[b-trxp79lzib] {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    filter: grayscale(0.6);
}

.ach-emoji[b-trxp79lzib] {
    font-size: 1.6rem;
    line-height: 1;
}

.ach-check-icon[b-trxp79lzib] {
    position: absolute;
    bottom: -5px;
    right: -5px;
    font-size: 0.9rem;
    color: #2ecc71;
    background: #0a2d22;
    border-radius: 50%;
    padding: 1px;
}

.ach-body[b-trxp79lzib] {
    flex: 1;
    min-width: 0;
}

.ach-name[b-trxp79lzib] {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f8fdfa;
}

.ach-name-locked[b-trxp79lzib] {
    color: rgba(255,255,255,0.6);
}

.ach-category-pill[b-trxp79lzib] {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    padding: 0.15rem 0.55rem;
    white-space: nowrap;
}

.ach-desc[b-trxp79lzib] {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.ach-progress-wrap[b-trxp79lzib] {
    height: 5px;
    background: rgba(255,255,255,0.1);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 0.3rem;
}

.ach-progress-bar[b-trxp79lzib] {
    height: 100%;
    background: linear-gradient(90deg, #198754, #2ecc71);
    border-radius: 999px;
    transition: width 0.6s ease;
    min-width: 4px;
}

.ach-progress-label[b-trxp79lzib] {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0;
}

.ach-unlocked-date[b-trxp79lzib] {
    font-size: 0.72rem;
    color: #2ecc71;
    margin-bottom: 0;
    font-weight: 600;
}

/* ── Friends & Network ─────────────────────────────────────────────────────── */

.fn-requests-card[b-trxp79lzib] {
    border-left: 4px solid rgba(255, 193, 7, 0.7) !important;
}

.fn-request-row[b-trxp79lzib],
.fn-result-row[b-trxp79lzib] {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    transition: background 0.2s ease, border-color 0.2s ease;
}

    .fn-request-row:hover[b-trxp79lzib],
    .fn-result-row:hover[b-trxp79lzib] {
        background: rgba(255,255,255,0.07);
        border-color: rgba(255,255,255,0.18);
    }

.fn-search-group .fn-search-icon[b-trxp79lzib] {
    background: rgba(0,0,0,0.28);
    border-color: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.55);
    border-right: none;
}

.fn-search-input[b-trxp79lzib] {
    border-left: none !important;
}

.fn-friend-card[b-trxp79lzib] {
    background: linear-gradient(135deg, rgba(12, 38, 28, 0.90) 0%, rgba(20, 60, 42, 0.85) 100%);
    border: 1px solid rgba(46, 204, 113, 0.18);
    border-radius: 1.1rem;
    padding: 1.25rem;
    height: 100%;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

    .fn-friend-card:hover[b-trxp79lzib] {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(25, 135, 84, 0.28);
        border-color: rgba(46, 204, 113, 0.38);
    }

.fn-stat-pill[b-trxp79lzib] {
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0.65rem;
    padding: 0.45rem 0.25rem;
}

.fn-stat-val[b-trxp79lzib] {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.1;
}

.fn-stat-lbl[b-trxp79lzib] {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.15rem;
}

/* ── My Handicap Page ─────────────────────────────────────────────────────── */

.hcp-step-card[b-trxp79lzib] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0.9rem;
    padding: 1.1rem 1.2rem;
    height: 100%;
}

.hcp-step-card.hcp-step-result[b-trxp79lzib] {
    border-color: rgba(25,135,84,0.4);
    background: rgba(25,135,84,0.08);
}

.hcp-step-num[b-trxp79lzib] {
    background: rgba(25,135,84,0.25);
    color: #2ecc71;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hcp-step-num.hcp-step-num-result[b-trxp79lzib] {
    background: rgba(25,135,84,0.4);
    color: #2ecc71;
}

.hcp-step-title[b-trxp79lzib] {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.3rem;
}

.hcp-step-formula[b-trxp79lzib] {
    font-size: 0.82rem;
    font-family: 'Courier New', monospace;
    color: #2ecc71;
    background: rgba(0,0,0,0.25);
    padding: 0.25rem 0.6rem;
    border-radius: 0.4rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.hcp-step-desc[b-trxp79lzib] {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0;
}

/* Handicap table */
.hcp-table[b-trxp79lzib] {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: transparent;
    --bs-table-hover-bg: rgba(255,255,255,0.04);
    --bs-table-color: rgba(255,255,255,0.85);
    color: rgba(255,255,255,0.85);
    background: transparent !important;
    background-color: transparent !important;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.85rem;
}

.hcp-table thead[b-trxp79lzib],
.hcp-table tbody[b-trxp79lzib],
.hcp-table tfoot[b-trxp79lzib],
.hcp-table tr[b-trxp79lzib],
.hcp-table th[b-trxp79lzib],
.hcp-table td[b-trxp79lzib] {
    background: transparent !important;
    background-color: transparent !important;
}

.hcp-table thead th[b-trxp79lzib] {
    background: rgba(0,0,0,0.3);
    color: rgba(255,255,255,0.5);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    border: none;
    padding: 0.6rem 0.8rem;
}

.hcp-table tbody td[b-trxp79lzib] {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 0.55rem 0.8rem;
    vertical-align: middle;
}

.hcp-row-counting td[b-trxp79lzib] {
    background: rgba(25,135,84,0.12) !important;
    background-color: rgba(25,135,84,0.12) !important;
}

/* Status badges */
.hcp-counting-badge[b-trxp79lzib] {
    background: rgba(25,135,84,0.3);
    color: #2ecc71;
    border: 1px solid rgba(46,204,113,0.4);
    font-size: 0.73rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 2rem;
    white-space: nowrap;
}

.hcp-nodata-badge[b-trxp79lzib] {
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.35);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.73rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 2rem;
    white-space: nowrap;
}

.hcp-notcounting-badge[b-trxp79lzib] {
    background: rgba(255,193,7,0.12);
    color: rgba(255,193,7,0.7);
    border: 1px solid rgba(255,193,7,0.2);
    font-size: 0.73rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 2rem;
    white-space: nowrap;
}

.hcp-old-badge[b-trxp79lzib] {
    background: rgba(220,53,69,0.12);
    color: rgba(220,53,69,0.7);
    border: 1px solid rgba(220,53,69,0.2);
    font-size: 0.73rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 2rem;
    white-space: nowrap;
}

.hcp-type-pill[b-trxp79lzib] {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    font-size: 0.72rem;
    padding: 0.15rem 0.5rem;
    border-radius: 2rem;
    white-space: nowrap;
}

.hcp-9hole-badge[b-trxp79lzib] {
    background: rgba(13,110,253,0.2);
    color: rgba(100,180,255,0.9);
    border: 1px solid rgba(13,110,253,0.3);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 2rem;
    white-space: nowrap;
    cursor: help;
}

.hcp-9hole-raw[b-trxp79lzib] {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
}

.hcp-9hole-note[b-trxp79lzib] {
    display: inline-block;
    margin-top: 0.3rem;
    color: rgba(100,180,255,0.8);
    font-size: 0.82rem;
}

/* WHS reference grid */
.hcp-whs-cell[b-trxp79lzib] {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 0.7rem;
    padding: 0.6rem 0.9rem;
    text-align: center;
    transition: all 0.2s;
}

.hcp-whs-cell.hcp-whs-active[b-trxp79lzib] {
    background: rgba(25,135,84,0.2);
    border-color: rgba(46,204,113,0.5);
    box-shadow: 0 0 12px rgba(46,204,113,0.15);
}

.hcp-whs-label[b-trxp79lzib] {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.2rem;
}

.hcp-whs-val[b-trxp79lzib] {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
}

.hcp-whs-active .hcp-whs-label[b-trxp79lzib],
.hcp-whs-active .hcp-whs-val[b-trxp79lzib] {
    color: #2ecc71;
}
/* /Components/Pages/SignUp.razor.rz.scp.css */
/* SignUp.razor.css – modern, about-page-aligned auth styles */

/* ── Background ────────────────────────────────────────────────── */
.login-bg[b-1kxlp0ijml] {
    background: linear-gradient(135deg, #0a3d2e 0%, #0f5c40 35%, #1a7a55 65%, #0a3d2e 100%);
    background-attachment: scroll; /* fixed is broken on iOS Safari – use scroll */
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
}

    .login-bg[b-1kxlp0ijml]::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
            radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

/* ── Keyframes ─────────────────────────────────────────────────── */
@keyframes cardFadeUp-b-1kxlp0ijml {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes float-b-1kxlp0ijml {
    0%,  100% { transform: translateY(0)     rotate(0deg);  }
    33%       { transform: translateY(-14px) rotate(5deg);  }
    66%       { transform: translateY(-7px)  rotate(-3deg); }
}

@keyframes expandWidth-b-1kxlp0ijml {
    from { width: 0;    opacity: 0; }
    to   { width: 80px; opacity: 1; }
}

/* ── Card ──────────────────────────────────────────────────────── */
.auth-card[b-1kxlp0ijml] {
    animation: cardFadeUp-b-1kxlp0ijml 0.7s ease both;
}

.golf-card[b-1kxlp0ijml] {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

    .golf-card:hover[b-1kxlp0ijml] {
        transform: translateY(-4px);
        box-shadow: 0 28px 72px rgba(0, 0, 0, 0.6);
        border-color: rgba(255, 215, 0, 0.28);
    }

/* ── Floating icon ─────────────────────────────────────────────── */
.auth-icon-container[b-1kxlp0ijml] {
    display: inline-block;
    animation: float-b-1kxlp0ijml 5s ease-in-out infinite;
}

.auth-icon[b-1kxlp0ijml] {
    font-size: 3rem;
    display: block;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}

/* ── Title ─────────────────────────────────────────────────────── */
.auth-title[b-1kxlp0ijml] {
    font-family: 'Anton', Impact, sans-serif;
    font-size: 2.2rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ── Gold divider ──────────────────────────────────────────────── */
.auth-divider[b-1kxlp0ijml] {
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    border-radius: 2px;
    width: 0;
    opacity: 0;
    animation: expandWidth-b-1kxlp0ijml 0.9s ease 0.35s forwards;
}

/* ── Inputs ─────────────────────────────────────────────────────── */
.golf-input[b-1kxlp0ijml] {
    background: rgba(0, 0, 0, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    border-radius: 0.75rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .golf-input:focus[b-1kxlp0ijml] {
        border-color: #198754 !important;
        box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.22) !important;
    }

    .golf-input[b-1kxlp0ijml]::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

/* ── Primary CTA button ────────────────────────────────────────── */
.golf-btn-glow[b-1kxlp0ijml] {
    background: linear-gradient(90deg, #198754, #2e7d32, #146c43, #198754);
    background-size: 300% 100%;
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 0.75rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-position 0.4s ease;
    box-shadow: 0 0 20px rgba(25, 135, 84, 0.5);
}

    .golf-btn-glow:hover:not(:disabled)[b-1kxlp0ijml] {
        transform: translateY(-3px);
        box-shadow: 0 0 40px rgba(25, 135, 84, 0.85);
        background-position: right center;
        color: #fff;
    }

    .golf-btn-glow:disabled[b-1kxlp0ijml] {
        opacity: 0.6;
    }

/* ── "or" divider ──────────────────────────────────────────────── */
.auth-or-divider[b-1kxlp0ijml] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .auth-or-divider[b-1kxlp0ijml]::before,
    .auth-or-divider[b-1kxlp0ijml]::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(255, 255, 255, 0.18);
    }

.auth-or-text[b-1kxlp0ijml] {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── Error message ─────────────────────────────────────────────── */
.auth-error[b-1kxlp0ijml] {
    color: rgba(255, 120, 120, 0.95);
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

/* ── Per-field validation messages ─────────────────────────────── */
.auth-field-error[b-1kxlp0ijml] {
    color: rgba(255, 120, 120, 0.9) !important;
    font-size: 0.83rem;
    margin-top: 0.3rem;
    display: block;
}

/* ── Helpers ────────────────────────────────────────────────────── */
.text-white-75[b-1kxlp0ijml] {
    color: rgba(255, 255, 255, 0.75);
}

.text-white-50[b-1kxlp0ijml] {
    color: rgba(255, 255, 255, 0.5);
}

/* ── Google Sign-Up button ──────────────────────────────────────── */
.btn-google[b-1kxlp0ijml] {
    background: #ffffff;
    color: #3c4043;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.01rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

    .btn-google:hover:not(:disabled)[b-1kxlp0ijml] {
        background: #f1f3f4;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
        transform: translateY(-2px);
        color: #3c4043;
    }

    .btn-google:active:not(:disabled)[b-1kxlp0ijml] {
        transform: translateY(0);
    }

    .btn-google:disabled[b-1kxlp0ijml] {
        opacity: 0.65;
    }
/* /Components/Pages/TourTracker.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════════
   TourTracker.razor – scoped styles
   Follows the site's dark-green / glassmorphism / white-text theme
   ═══════════════════════════════════════════════════════════════════ */

/* ── Page background ────────────────────────────────────────────── */
.tour-bg[b-mgsy2sr737] {
    background: linear-gradient(135deg, #0a3d2e 0%, #0f5c40 35%, #1a7a55 65%, #0a3d2e 100%);
    background-attachment: scroll; /* fixed is broken on iOS Safari – use scroll */
    position: relative;
}

    .tour-bg[b-mgsy2sr737]::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.06) 0%, transparent 55%);
        pointer-events: none;
    }

/* ── Glassmorphism card (same as site) ──────────────────────────── */
.golf-card[b-mgsy2sr737] {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.25rem;
    transition: all 0.4s ease;
}

    .golf-card:hover[b-mgsy2sr737] {
        transform: translateY(-4px);
        box-shadow: 0 18px 54px rgba(0, 0, 0, 0.45);
    }

/* Disable hover lift on multi-winner highlight cards and the winners table wrapper.
   !important is required because Blazor CSS scoping appends an attribute selector to every
   rule, making all scoped selectors equal in specificity – only !important guarantees the
   override wins regardless of declaration order. */
.golf-card.multi-winner-card[b-mgsy2sr737],
.golf-card.multi-winner-card:hover[b-mgsy2sr737] {
    transform: none !important;
    transition: box-shadow 0.3s ease !important;
}

.golf-card.multi-winner-card:hover[b-mgsy2sr737] {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.golf-card.winners-table-wrap[b-mgsy2sr737],
.golf-card.winners-table-wrap:hover[b-mgsy2sr737] {
    transform: none !important;
}

/* Winners table inner styling */
.winners-table[b-mgsy2sr737] {
    font-size: 0.82rem;
}

    .winners-table thead th[b-mgsy2sr737] {
        background: rgba(0, 0, 0, 0.35);
        border-bottom: 2px solid rgba(25, 135, 84, 0.4);
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.7rem;
        letter-spacing: 1px;
        white-space: nowrap;
        padding: 0.5rem 0.4rem;
    }

    .winners-table tbody td[b-mgsy2sr737] {
        padding: 0.45rem 0.4rem;
        vertical-align: middle;
    }

/* ── Title glow ─────────────────────────────────────────────────── */
.golf-title[b-mgsy2sr737] {
    font-family: 'Anton', Impact, sans-serif;
    letter-spacing: 3px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 215, 0, 0.2);
}

.title-glow[b-mgsy2sr737] {
    color: #ffd700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

/* ── Helpers ─────────────────────────────────────────────────────── */
.text-white-75[b-mgsy2sr737] {
    color: rgba(255, 255, 255, 0.75);
}

.text-white-50[b-mgsy2sr737] {
    color: rgba(255, 255, 255, 0.50);
}

/* ── Tour selector pills ────────────────────────────────────────── */
.tour-pill[b-mgsy2sr737] {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    padding: 0.4rem 1.4rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.35s ease;
}

    .tour-pill:hover:not(:disabled)[b-mgsy2sr737] {
        background: rgba(25, 135, 84, 0.35);
        color: #fff;
        transform: translateY(-2px);
    }

    .tour-pill.active[b-mgsy2sr737] {
        background: linear-gradient(135deg, #198754, #2e7d32);
        color: #fff;
        border-color: transparent;
        box-shadow: 0 0 18px rgba(25, 135, 84, 0.55);
    }

    .tour-pill:disabled[b-mgsy2sr737] {
        opacity: 0.4;
        cursor: not-allowed;
    }

/* ── Month filter pills ─────────────────────────────────────────── */
.month-pill[b-mgsy2sr737] {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .month-pill:hover[b-mgsy2sr737] {
        background: rgba(25, 135, 84, 0.25);
        color: #fff;
    }

    .month-pill.active[b-mgsy2sr737] {
        background: #198754;
        color: #fff;
        border-color: #198754;
        box-shadow: 0 0 10px rgba(25, 135, 84, 0.4);
    }

/* ── Live dot ────────────────────────────────────────────────────── */
.live-dot[b-mgsy2sr737] {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #28a745;
    box-shadow: 0 0 8px #28a745, 0 0 20px rgba(40, 167, 69, 0.4);
    animation: pulse-dot-b-mgsy2sr737 1.5s ease-in-out infinite;
}

@keyframes pulse-dot-b-mgsy2sr737 {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px #28a745; }
    50%      { opacity: 0.5; box-shadow: 0 0 20px #28a745, 0 0 40px rgba(40, 167, 69, 0.3); }
}

/* ── Spinner ─────────────────────────────────────────────────────── */
.spinner-lg[b-mgsy2sr737] {
    width: 3rem;
    height: 3rem;
    border-width: 0.35rem;
}

/* ── Leaderboard table (compact) ────────────────────────────────── */
.leaderboard-wrap[b-mgsy2sr737] {
    border-radius: 1.25rem;
    overflow: hidden;
}

.leaderboard-scroll[b-mgsy2sr737] {
    max-height: 520px;
    overflow-y: auto;
}

    .leaderboard-scroll[b-mgsy2sr737]::-webkit-scrollbar {
        width: 6px;
    }

    .leaderboard-scroll[b-mgsy2sr737]::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.2);
    }

    .leaderboard-scroll[b-mgsy2sr737]::-webkit-scrollbar-thumb {
        background: rgba(25, 135, 84, 0.4);
        border-radius: 3px;
    }

.leaderboard-table[b-mgsy2sr737] {
    --bs-table-bg: transparent;
    --bs-table-hover-bg: rgba(25, 135, 84, 0.12);
    font-size: 0.82rem;
}

.leaderboard-compact thead th[b-mgsy2sr737] {
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 2px solid rgba(25, 135, 84, 0.4);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    letter-spacing: 1px;
    padding: 0.45rem 0.35rem;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 2;
}

.leaderboard-compact tbody td[b-mgsy2sr737] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.35rem 0.35rem;
    vertical-align: middle;
    color: #fff;
    font-size: 0.82rem;
}

.leaderboard-row[b-mgsy2sr737] {
    cursor: pointer;
    transition: background 0.2s ease;
}

    .leaderboard-row:hover td[b-mgsy2sr737] {
        background: rgba(25, 135, 84, 0.15);
    }

.row-selected td[b-mgsy2sr737] {
    background: rgba(25, 135, 84, 0.25) !important;
    border-left: 2px solid #28a745;
}

.player-name-cell[b-mgsy2sr737] {
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
    display: inline-block;
}

.badge-sm[b-mgsy2sr737] {
    font-size: 0.6rem;
    padding: 0.15rem 0.35rem;
}

.player-flag[b-mgsy2sr737] {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

/* Score colour coding – bright, readable on dark backgrounds */
.score-under[b-mgsy2sr737] {
    color: #66bb6a !important;       /* soft green for under par */
    font-weight: 700;
}

.score-over[b-mgsy2sr737] {
    color: #4fc3f7 !important;       /* light blue for over par */
    font-weight: 700;
}

/* ── Schedule cards ──────────────────────────────────────────────── */
.schedule-card[b-mgsy2sr737] {
    transition: all 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

    .schedule-card:hover[b-mgsy2sr737] {
        transform: translateY(-6px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    }

.schedule-title[b-mgsy2sr737] {
    font-size: 0.95rem;
}

.schedule-card-live[b-mgsy2sr737] {
    border-left: 4px solid #28a745;
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.2);
}

.schedule-card-completed[b-mgsy2sr737] {
    opacity: 0.75;
}

    .schedule-card-completed:hover[b-mgsy2sr737] {
        opacity: 1;
    }

/* Pulsing LIVE badge */
.pulse-badge[b-mgsy2sr737] {
    animation: pulse-badge-b-mgsy2sr737 2s ease-in-out infinite;
}

@keyframes pulse-badge-b-mgsy2sr737 {
    0%, 100% { box-shadow: 0 0 4px rgba(40, 167, 69, 0.4); }
    50%      { box-shadow: 0 0 16px rgba(40, 167, 69, 0.7); }
}

/* ── Player detail panel ────────────────────────────────────────── */
.player-detail-card[b-mgsy2sr737] {
    position: relative;
    border: 1px solid rgba(25, 135, 84, 0.3);
    box-shadow: 0 0 30px rgba(25, 135, 84, 0.15);
}

    .player-detail-card:hover[b-mgsy2sr737] {
        transform: none;
    }

.btn-close-panel[b-mgsy2sr737] {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

    .btn-close-panel:hover[b-mgsy2sr737] {
        color: #fff;
        background: rgba(220, 53, 69, 0.3);
        border-color: rgba(220, 53, 69, 0.5);
    }

.player-headshot[b-mgsy2sr737] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(25, 135, 84, 0.5);
    box-shadow: 0 0 16px rgba(25, 135, 84, 0.3);
}

.player-headshot-placeholder[b-mgsy2sr737] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(25, 135, 84, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Small thumbnail used in leaderboard table rows */
.player-thumb[b-mgsy2sr737] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(25, 135, 84, 0.4);
    flex-shrink: 0;
}

.player-thumb-placeholder[b-mgsy2sr737] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.stat-tile[b-mgsy2sr737] {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 0.6rem 0.5rem;
    text-align: center;
}

.stat-label[b-mgsy2sr737] {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.2rem;
}

.stat-value[b-mgsy2sr737] {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.round-chip[b-mgsy2sr737] {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    padding: 0.4rem 0.8rem;
    text-align: center;
    min-width: 56px;
}

.round-chip-total[b-mgsy2sr737] {
    background: rgba(25, 135, 84, 0.2);
    border-color: rgba(25, 135, 84, 0.4);
}

.round-chip-label[b-mgsy2sr737] {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}

.round-chip-value[b-mgsy2sr737] {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.stats-grid[b-mgsy2sr737] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.stat-row[b-mgsy2sr737] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0.6rem;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0.4rem;
}

/* ── Fade-in animation ──────────────────────────────────────────── */
.animate-fadein[b-mgsy2sr737] {
    animation: fadein-b-mgsy2sr737 0.6s ease both;
}

@keyframes fadein-b-mgsy2sr737 {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* /Components/Pages/UserProfile.razor.rz.scp.css */
/* Profile.razor.css – All Postgres, no Firebase Storage needed */

body[b-xaxso624tm], html[b-xaxso624tm] {
    margin: 0;
    padding: 0;
    height: 100%;
}

.profile-main[b-xaxso624tm] {
    background: radial-gradient(circle at 15% 85%, rgba(28, 68, 52, 0.92) 0%, rgba(10, 45, 32, 0.96) 45%, #0a2d22 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-height: 100vh;
    min-height: 100dvh;
    color: #f8fdfa;
}

.profile-bg[b-xaxso624tm] {
    background: linear-gradient(145deg, #0a3d2e 0%, #0f5c40 40%, #1a7a55 70%, #0a3d2e 100%);
    background-attachment: scroll; /* fixed is broken on iOS Safari – use scroll */
    background-size: 140% 140%;
    animation: slowDrift-b-xaxso624tm 28s ease infinite;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
}

    .profile-bg[b-xaxso624tm]::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.04) 0%, transparent 60%);
        pointer-events: none;
        opacity: 0.7;
    }

@keyframes slowDrift-b-xaxso624tm {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.golf-card[b-xaxso624tm] {
    background: rgba(12, 38, 28, 0.86) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.5rem;
    box-shadow: 0 14px 48px rgba(0,0,0,0.55);
    transition: all 0.3s ease;
    padding: 2rem 2.25rem;
}

    .golf-card:hover[b-xaxso624tm] {
        transform: translateY(-6px);
        box-shadow: 0 22px 64px rgba(0,0,0,0.65);
    }

.golf-title[b-xaxso624tm] {
    letter-spacing: 2.4px;
    text-shadow: 0 4px 16px rgba(0,0,0,0.8), 0 0 18px rgba(25,135,84,0.15);
    color: #ffffff;
    margin-bottom: 0 !important;
    line-height: 1.1;
}

.golf-subtitle[b-xaxso624tm] {
    font-family: 'Anton', sans-serif;
    letter-spacing: 1.5px;
    color: #c8e6c9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.65);
    font-size: 1.5rem;
    margin-bottom: 1.8rem !important;
}

.profile-avatar[b-xaxso624tm] {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 7px solid rgba(25,135,84,0.8);
    box-shadow: 0 0 40px rgba(25,135,84,0.5), inset 0 0 14px rgba(255,255,255,0.1);
    transition: all 0.35s ease;
}

    .profile-avatar:hover[b-xaxso624tm] {
        transform: scale(1.07) rotate(2deg);
        box-shadow: 0 0 58px rgba(25,135,84,0.7);
    }

.info-display[b-xaxso624tm] {
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.8rem;
    padding: 1.1rem 1.5rem;
    color: #f0fff4;
    font-size: 1.12rem;
    min-height: 54px;
    display: flex;
    align-items: center;
    box-shadow: inset 0 1px 5px rgba(0,0,0,0.35);
}

.unauth-card[b-xaxso624tm] {
    background: rgba(12, 38, 28, 0.89) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.6rem;
    box-shadow: 0 24px 70px rgba(0,0,0,0.65);
    max-width: 500px;
    padding: 3.5rem 3rem;
}

.golf-btn-glow[b-xaxso624tm] {
    background: linear-gradient(90deg, #1b8e5f, #2e9d6e, #1b8e5f);
    background-size: 220% 100%;
    border: none;
    color: white;
    font-weight: 700;
    box-shadow: 0 0 18px rgba(27,142,95,0.6);
    transition: all 0.55s ease;
    border-radius: 0.9rem;
    font-size: 1.05rem;
    padding: 0.65rem 1.5rem;
    min-width: 140px;
}

    .golf-btn-glow:hover:not(:disabled)[b-xaxso624tm] {
        transform: translateY(-4px);
        box-shadow: 0 0 40px rgba(27,142,95,0.85);
        background-position: right center;
    }

/* Text utilities */
.text-white-90[b-xaxso624tm] { color: rgba(255,255,255,0.92) !important; }
.text-white-75[b-xaxso624tm] { color: rgba(255,255,255,0.78) !important; }
.text-white-60[b-xaxso624tm] { color: rgba(255,255,255,0.62) !important; }
.text-white-25[b-xaxso624tm] { color: rgba(255,255,255,0.25) !important; }
.ls-1[b-xaxso624tm]          { letter-spacing: 0.05em; }

/* ── Hero header card ────────────────────────────────────────────────────── */

.up-hero-card[b-xaxso624tm] {
    background: rgba(12, 38, 28, 0.86);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.5rem;
    box-shadow: 0 14px 48px rgba(0,0,0,0.55);
    padding: 2rem 2.5rem;
}

/* Info chips under the identity block */
.up-info-chip[b-xaxso624tm] {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
}

/* Quick-stat strip shown beside the avatar on md+ */
.up-qs-strip[b-xaxso624tm] {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(0,0,0,0.32);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1.1rem;
    padding: 0.75rem 1.25rem;
}

.up-qs-item[b-xaxso624tm] {
    text-align: center;
    padding: 0.25rem 1.25rem;
}

.up-qs-val[b-xaxso624tm] {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.up-qs-lbl[b-xaxso624tm] {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255,255,255,0.45);
    margin-top: 0.2rem;
}

.up-qs-divider[b-xaxso624tm] {
    width: 1px;
    background: rgba(255,255,255,0.12);
    align-self: stretch;
    margin: 0.2rem 0;
}

/* ── Tab badge (count bubble on the Achievements tab button) ─────────────── */
.up-tab-badge[b-xaxso624tm] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgba(255,215,0,0.25);
    color: #ffd700;
    border: 1px solid rgba(255,215,0,0.35);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0 0.35rem;
    vertical-align: middle;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Golf Stats Dashboard  (gs-* prefix — ported from Profile.razor.css)
───────────────────────────────────────────────────────────────────────────── */

/* Tab bar */
.gs-tabs[b-xaxso624tm] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.gs-tab[b-xaxso624tm] {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    border-radius: 0.75rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.03em;
}

    .gs-tab:hover[b-xaxso624tm] {
        background: rgba(46,204,113,0.15);
        border-color: rgba(46,204,113,0.35);
        color: #7ddb9f;
    }

.gs-tab-active[b-xaxso624tm] {
    background: linear-gradient(135deg, rgba(25,135,84,0.7), rgba(46,204,113,0.5));
    border-color: rgba(46,204,113,0.6) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(25,135,84,0.35);
}

/* Dashboard Card Enhancements */
.dashboard-card[b-xaxso624tm] {
    border-radius: 1.2rem;
    transition: all 0.4s ease;
}

    .dashboard-card:hover[b-xaxso624tm] {
        transform: translateY(-8px);
        box-shadow: 0 28px 72px rgba(0,0,0,0.7);
    }

/* Card Glow Effect */
.card-glow[b-xaxso624tm] {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(25,135,84,0.15) 0%, transparent 70%);
    opacity: 0.6;
    pointer-events: none;
    animation: glowPulse-b-xaxso624tm 8s infinite ease-in-out;
}

@keyframes glowPulse-b-xaxso624tm {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50%       { transform: scale(1.1); opacity: 0.8; }
}

/* Shadow XL */
.shadow-xl[b-xaxso624tm] {
    box-shadow: 0 20px 60px rgba(0,0,0,0.6) !important;
}

/* Progress Bar */
.progress[b-xaxso624tm] {
    border-radius: 50rem !important;
}

.progress-bar[b-xaxso624tm] {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    transition: width 1s ease-in-out;
}

/* Hero cards */
.gs-hero-label[b-xaxso624tm] {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.gs-hero-num[b-xaxso624tm] {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1;
    margin: 0.2rem 0;
    letter-spacing: -1px;
}

.gs-hero-watermark[b-xaxso624tm] {
    font-size: 5rem;
    opacity: 0.06;
    right: -10px;
    bottom: -10px;
    pointer-events: none;
}

/* Handicap tier badges */
.gs-badge[b-xaxso624tm] {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.gs-badge-gold[b-xaxso624tm]  { background: rgba(255,215,0,0.2);   color: #ffd700; border: 1px solid rgba(255,215,0,0.4); }
.gs-badge-green[b-xaxso624tm] { background: rgba(46,204,113,0.2);  color: #2ecc71; border: 1px solid rgba(46,204,113,0.4); }
.gs-badge-blue[b-xaxso624tm]  { background: rgba(13,202,240,0.15); color: #0dcaf0; border: 1px solid rgba(13,202,240,0.35); }

/* Score distribution cells */
.gs-dist-cell[b-xaxso624tm] {
    padding: 1rem 0.5rem;
    border-radius: 1rem;
    border: 1px solid transparent;
    transition: transform 0.2s ease;
}

    .gs-dist-cell:hover[b-xaxso624tm] { transform: translateY(-4px); }

.gs-dist-icon[b-xaxso624tm]  { font-size: 1.5rem; margin-bottom: 0.4rem; }
.gs-dist-count[b-xaxso624tm] { font-size: 1.8rem; font-weight: 900; line-height: 1; }
.gs-dist-pct[b-xaxso624tm]   { font-size: 0.85rem; font-weight: 700; opacity: 0.8; margin-top: 0.1rem; }
.gs-dist-label[b-xaxso624tm] { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.07em; opacity: 0.6; margin-top: 0.2rem; }

.gs-dist-eagle[b-xaxso624tm] { background: rgba(46,204,113,0.12); border-color: rgba(46,204,113,0.22); color: #2ecc71; }
.gs-dist-par[b-xaxso624tm]   { background: rgba(13,202,240,0.1);  border-color: rgba(13,202,240,0.2);  color: #0dcaf0; }
.gs-dist-bogey[b-xaxso624tm] { background: rgba(255,193,7,0.1);   border-color: rgba(255,193,7,0.2);   color: #ffc107; }
.gs-dist-worse[b-xaxso624tm] { background: rgba(220,53,69,0.1);   border-color: rgba(220,53,69,0.2);   color: #dc3545; }

/* Trend SVG chart */
.gs-trend-wrap[b-xaxso624tm] {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.gs-trend-svg[b-xaxso624tm] {
    width: 100%;
    min-width: 300px;
    height: auto;
    display: block;
}

/* Par type breakdown cards */
.gs-par-card[b-xaxso624tm] {
    text-align: center;
    padding: 1.4rem 1rem;
    border-radius: 1.1rem;
    background: rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.2s ease;
}

    .gs-par-card:hover[b-xaxso624tm] { transform: translateY(-4px); }

.gs-par-type[b-xaxso624tm] { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.gs-par-num[b-xaxso624tm]  { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.gs-par-avg[b-xaxso624tm]  { font-size: 0.82rem; font-weight: 600; margin-top: 0.25rem; }

/* Advanced metric rows */
.gs-metric-row[b-xaxso624tm] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

    .gs-metric-row:last-child[b-xaxso624tm] { border-bottom: none; }

.gs-metric-label[b-xaxso624tm] { font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.gs-metric-value[b-xaxso624tm] { font-size: 1.25rem; font-weight: 800; min-width: 56px; text-align: right; }

/* Course performance table */
.gs-course-table[b-xaxso624tm] {
    --bs-table-bg: transparent;
    --bs-table-color: rgba(255,255,255,0.85);
    color: rgba(255,255,255,0.85);
    background: transparent !important;
}

.gs-course-table thead[b-xaxso624tm], .gs-course-table tbody[b-xaxso624tm],
.gs-course-table tr[b-xaxso624tm], .gs-course-table th[b-xaxso624tm], .gs-course-table td[b-xaxso624tm] {
    background: transparent !important;
    background-color: transparent !important;
}

.gs-course-table thead th[b-xaxso624tm] {
    color: rgba(255,255,255,0.45);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    padding-bottom: 0.6rem;
}

.gs-course-table tbody td[b-xaxso624tm] {
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    vertical-align: middle;
}

.gs-course-table tbody tr:last-child td[b-xaxso624tm] { border-bottom: none !important; }

/* Course link */
.rr-course-link[b-xaxso624tm] {
    color: #2ecc71 !important;
    text-decoration: none;
}

    .rr-course-link:hover[b-xaxso624tm] { text-decoration: underline; }

/* Color subtles for stat icons */
.bg-success-subtle[b-xaxso624tm] { background: rgba(40,167,69,0.15)  !important; }
.bg-info-subtle[b-xaxso624tm]    { background: rgba(0,123,255,0.15)  !important; }
.bg-warning-subtle[b-xaxso624tm] { background: rgba(255,193,7,0.15)  !important; }
.bg-danger-subtle[b-xaxso624tm]  { background: rgba(220,53,69,0.15)  !important; }

/* ── UserProfile Achievement Cards ─────────────────────────────────────────── */

.up-ach-card[b-xaxso624tm] {
    border-radius: 1rem;
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.20) 0%, rgba(12, 38, 28, 0.88) 100%);
    border: 1px solid rgba(46, 204, 113, 0.30);
    box-shadow: 0 4px 18px rgba(46,204,113,0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

    .up-ach-card:hover[b-xaxso624tm] {
        transform: translateY(-3px);
        box-shadow: 0 8px 28px rgba(46,204,113,0.18);
    }

.up-ach-icon-wrap[b-xaxso624tm] {
    position: relative;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46,204,113,0.22), rgba(25,135,84,0.12));
    border: 1px solid rgba(46,204,113,0.30);
}

.up-ach-emoji[b-xaxso624tm] {
    font-size: 1.6rem;
    line-height: 1;
}

.up-ach-check[b-xaxso624tm] {
    position: absolute;
    bottom: -5px;
    right: -5px;
    color: #2ecc71;
    font-size: 0.85rem;
    background: rgba(12,38,28,0.9);
    border-radius: 50%;
}

.up-ach-body[b-xaxso624tm]  { flex: 1; min-width: 0; }
.up-ach-name[b-xaxso624tm]  { font-size: 0.92rem; font-weight: 700; color: #f8fdfa; }

.up-ach-pill[b-xaxso624tm] {
    font-size: 0.65rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.up-ach-desc[b-xaxso624tm] { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.4; }
.up-ach-date[b-xaxso624tm] { font-size: 0.72rem; color: #2ecc71; font-weight: 600; }
/* /Components/Pages/Verify-Email.razor.rz.scp.css */
/* VerifyEmail.razor.css – Matches SignUp/Login styling perfectly */

.login-bg[b-pej42j9k14] {
    background: linear-gradient(135deg, #0a3d2e 0%, #0f5c40 35%, #1a7a55 65%, #0a3d2e 100%);
    background-attachment: scroll; /* fixed is broken on iOS Safari – use scroll */
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
}

    .login-bg[b-pej42j9k14]::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 65%);
        pointer-events: none;
    }

.golf-card[b-pej42j9k14] {
    background: rgba(15, 35, 25, 0.78) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 1.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.55);
    transition: transform 0.3s ease;
}

    .golf-card:hover[b-pej42j9k14] {
        transform: translateY(-4px);
    }

h2.text-white.fw-bold[b-pej42j9k14] {
    font-family: 'Anton', Impact, sans-serif;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 215, 0, 0.12);
}

.text-white-50[b-pej42j9k14] {
    color: rgba(255, 255, 255, 0.70) !important;
}

.btn-outline-light[b-pej42j9k14] {
    border-color: rgba(255, 255, 255, 0.45);
    color: white;
    transition: all 0.3s ease;
}

    .btn-outline-light:hover:not(:disabled)[b-pej42j9k14] {
        background-color: rgba(255, 255, 255, 0.15);
        border-color: white;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

    .btn-outline-light:disabled[b-pej42j9k14] {
        opacity: 0.5;
        cursor: not-allowed;
    }

.alert-success[b-pej42j9k14], .alert-danger[b-pej42j9k14] {
    border-radius: 0.75rem;
    font-weight: 500;
}

.hover-glow:hover[b-pej42j9k14] {
    color: #ffc107 !important;
    text-shadow: 0 0 6px rgba(255, 193, 7, 0.3);
}

/* Spinner styling for consistency */
.spinner-border[b-pej42j9k14] {
    border-color: currentColor;
    border-right-color: transparent;
}

/* Add to VerifyEmail.razor.css */
.golf-btn-glow.btn-outline-light[b-pej42j9k14] {
    background: linear-gradient(90deg, #198754, #2e7d32, #198754);
    background-size: 200% 100%;
    border: none;
    color: white;
    box-shadow: 0 0 12px rgba(25, 135, 84, 0.45);
    transition: all 0.5s ease;
}

    .golf-btn-glow.btn-outline-light:hover:not(:disabled)[b-pej42j9k14] {
        transform: translateY(-2px);
        box-shadow: 0 0 25px rgba(25, 135, 84, 0.65);
        background-position: right center;
    }
/* /Components/Pages/Widgets/CourseInfoWidget.razor.rz.scp.css */
/* Stat badges in course info */
.stat-badge[b-o1mjtedkrv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    padding: 0.75rem 1.25rem;
    min-width: 80px;
    transition: all 0.3s ease;
}

    .stat-badge:hover[b-o1mjtedkrv] {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-2px);
    }

.stat-label[b-o1mjtedkrv] {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(248, 253, 250, 0.6);
    margin-bottom: 0.25rem;
}

.stat-value[b-o1mjtedkrv] {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2ecc71;
}

/* Contact card */
.contact-card[b-o1mjtedkrv] {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.25rem;
}

.contact-item[b-o1mjtedkrv] {
    color: rgba(248, 253, 250, 0.75);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

    .contact-item:last-child[b-o1mjtedkrv] {
        margin-bottom: 0;
    }

.dashboard-link[b-o1mjtedkrv] {
    color: #2ecc71 !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .dashboard-link:hover[b-o1mjtedkrv] {
        color: #27ae60 !important;
        text-decoration: underline;
    }

/* Responsive tweaks */
@media (max-width: 768px) {
    .stat-badge[b-o1mjtedkrv] {
        padding: 0.5rem 0.75rem;
        min-width: 60px;
    }

    .stat-value[b-o1mjtedkrv] {
        font-size: 1.1rem;
    }
}

/* Suggest Edit button */
.suggest-edit-btn[b-o1mjtedkrv] {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(248, 253, 250, 0.75);
    border-radius: 0.6rem;
    font-size: 0.82rem;
    transition: all 0.25s ease;
}

    .suggest-edit-btn:hover[b-o1mjtedkrv] {
        background: rgba(46, 204, 113, 0.15);
        border-color: rgba(46, 204, 113, 0.4);
        color: #2ecc71;
    }

/* Suggest form container */
.suggest-form[b-o1mjtedkrv] {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.25rem;
}

/* Suggest form inputs */
.suggest-input[b-o1mjtedkrv] {
    background: rgba(0, 0, 0, 0.45) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 0.6rem;
}

    .suggest-input:focus[b-o1mjtedkrv] {
        border-color: #198754 !important;
        box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.2) !important;
    }

    .suggest-input[b-o1mjtedkrv]::placeholder {
        color: rgba(255, 255, 255, 0.45) !important;
    }

/* Suggest submit button */
.suggest-submit-btn[b-o1mjtedkrv] {
    background: linear-gradient(90deg, #1b8e5f, #2e9d6e);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 0.6rem;
    transition: all 0.25s ease;
}

    .suggest-submit-btn:hover:not(:disabled)[b-o1mjtedkrv] {
        box-shadow: 0 0 18px rgba(46, 204, 113, 0.5);
        transform: translateY(-1px);
    }

    .suggest-submit-btn:disabled[b-o1mjtedkrv] {
        opacity: 0.55;
    }

/* Star rating section */
.star-rating-section[b-o1mjtedkrv] {
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
}

/* Display stars (aggregate rating) */
.display-star[b-o1mjtedkrv] {
    font-size: 1.25rem;
}

.star-filled[b-o1mjtedkrv] {
    color: #f4c430;
}

.star-empty[b-o1mjtedkrv] {
    color: rgba(255, 255, 255, 0.25);
}

.rating-number[b-o1mjtedkrv] {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(248, 253, 250, 0.85);
    align-self: center;
}

.rating-count[b-o1mjtedkrv] {
    font-size: 0.75rem;
    color: rgba(248, 253, 250, 0.5);
}

.rate-label[b-o1mjtedkrv] {
    font-size: 0.8rem;
    color: rgba(248, 253, 250, 0.6);
    white-space: nowrap;
}

/* Interactive star buttons */
.star-btn[b-o1mjtedkrv] {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.15s ease, transform 0.15s ease;
    line-height: 1;
}

    .star-btn:hover[b-o1mjtedkrv],
    .star-btn.star-active[b-o1mjtedkrv] {
        color: #f4c430;
    }

    .star-btn:hover[b-o1mjtedkrv] {
        transform: scale(1.2);
    }

    .star-btn:disabled[b-o1mjtedkrv] {
        cursor: not-allowed;
        opacity: 0.6;
    }

/* Smaller interactive star buttons for the right-column rating section */
.star-btn-sm[b-o1mjtedkrv] {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.15s ease, transform 0.15s ease;
    line-height: 1;
}

    .star-btn-sm:hover[b-o1mjtedkrv],
    .star-btn-sm.star-active[b-o1mjtedkrv] {
        color: #f4c430;
    }

    .star-btn-sm:hover[b-o1mjtedkrv] {
        transform: scale(1.2);
    }

    .star-btn-sm:disabled[b-o1mjtedkrv] {
        cursor: not-allowed;
        opacity: 0.6;
    }

/* Smaller display stars for the right-column rating section */
.display-star-sm[b-o1mjtedkrv] {
    font-size: 0.95rem;
}

.rating-number-sm[b-o1mjtedkrv] {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(248, 253, 250, 0.85);
    align-self: center;
}

/* I've Golfed Here button */
.golfed-here-btn[b-o1mjtedkrv] {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(248, 253, 250, 0.8);
    border-radius: 0.6rem;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.45rem 1rem;
    transition: all 0.25s ease;
}

    .golfed-here-btn:hover:not(:disabled)[b-o1mjtedkrv] {
        background: rgba(46, 204, 113, 0.15);
        border-color: rgba(46, 204, 113, 0.4);
        color: #2ecc71;
    }

    .golfed-here-btn.golfed-here-active[b-o1mjtedkrv] {
        background: rgba(46, 204, 113, 0.2);
        border-color: #2ecc71;
        color: #2ecc71;
        font-weight: 600;
    }

    .golfed-here-btn.golfed-here-active:hover:not(:disabled)[b-o1mjtedkrv] {
        background: rgba(46, 204, 113, 0.1);
        border-color: rgba(46, 204, 113, 0.5);
    }

    .golfed-here-btn:disabled[b-o1mjtedkrv] {
        opacity: 0.6;
        cursor: not-allowed;
    }

/* Log Score link button (next to I've Golfed Here) */
.log-score-link-btn[b-o1mjtedkrv] {
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.35);
    color: #2ecc71;
    border-radius: 0.6rem;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.45rem 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
}

    .log-score-link-btn:hover[b-o1mjtedkrv] {
        background: rgba(46, 204, 113, 0.22);
        border-color: #2ecc71;
        color: #2ecc71;
        box-shadow: 0 0 12px rgba(46, 204, 113, 0.3);
    }
/* /Components/Pages/Widgets/CourseStatsWidget.razor.rz.scp.css */
/* Tee comparison bars */
.tee-stats-grid[b-mhpo9375u1] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tee-stat-row[b-mhpo9375u1] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tee-name[b-mhpo9375u1] {
    min-width: 80px;
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(248, 253, 250, 0.85);
}

.tee-bar-container[b-mhpo9375u1] {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tee-bar[b-mhpo9375u1] {
    height: 12px;
    background: linear-gradient(90deg, #198754, #2ecc71);
    border-radius: 6px;
    transition: width 0.6s ease;
    min-width: 4px;
}

.tee-yards[b-mhpo9375u1] {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(248, 253, 250, 0.75);
    white-space: nowrap;
}

/* Difficulty cards */
.difficulty-card[b-mhpo9375u1] {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 1rem;
    font-size: 0.9rem;
}

    .difficulty-card .progress[b-mhpo9375u1] {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50rem;
    }

/* Progress bar color for slope */
.bg-orange[b-mhpo9375u1] {
    background-color: #e67e22 !important;
}
/* /Components/Pages/Widgets/LeaderboardWidget.razor.rz.scp.css */
/* Leaderboard placeholder */
.leaderboard-placeholder .table[b-aoadphsmx3] {
    background: transparent !important;
}

    .leaderboard-placeholder .table thead th[b-aoadphsmx3] {
        background: rgba(0, 0, 0, 0.3) !important;
        border-bottom: 2px solid rgba(255, 193, 7, 0.4) !important;
        color: #ffc107;
        font-weight: 700;
    }

    .leaderboard-placeholder .table tbody td[b-aoadphsmx3] {
        background: transparent !important;
        border-color: rgba(255, 255, 255, 0.06) !important;
    }
/* /Components/Pages/Widgets/MapWidget.razor.rz.scp.css */
#dashboardMapBody[b-vn15hhn6fe] {
    display: flex;
    flex-direction: column;
    height: 93.5%;
}

#dashboardMap[b-vn15hhn6fe] {
    flex: 1;
    width: 100%;
}
/* /Components/Pages/Widgets/ReviewsWidget.razor.rz.scp.css */
/* ── Reviews widget ─────────────────────────────────────────────────────── */

.reviews-see-all-link[b-eo7k3oxv4s] {
    font-size: 0.82rem;
    color: #2ecc71;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .reviews-see-all-link:hover[b-eo7k3oxv4s] {
        color: #27ae60;
        text-decoration: underline;
    }

/* Summary row */
.reviews-summary-row[b-eo7k3oxv4s] {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.reviews-summary-score[b-eo7k3oxv4s] {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
}

.big-score[b-eo7k3oxv4s] {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.summary-stars[b-eo7k3oxv4s] {
    margin: 0.25rem 0;
}

.sum-star[b-eo7k3oxv4s] {
    font-size: 1rem;
}

.star-filled[b-eo7k3oxv4s] {
    color: #f4c430;
}

.star-empty[b-eo7k3oxv4s] {
    color: rgba(255, 255, 255, 0.2);
}

.review-count-label[b-eo7k3oxv4s] {
    font-size: 0.75rem;
    color: rgba(248, 253, 250, 0.5);
    margin-top: 0.1rem;
}

/* Breakdown bars */
.reviews-breakdown[b-eo7k3oxv4s] {
    min-width: 180px;
}

.breakdown-row[b-eo7k3oxv4s] {
    gap: 0.5rem;
}

.breakdown-label[b-eo7k3oxv4s] {
    font-size: 0.75rem;
    color: rgba(248, 253, 250, 0.65);
    width: 2.2rem;
    text-align: right;
    white-space: nowrap;
}

.breakdown-bar-track[b-eo7k3oxv4s] {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.breakdown-bar-fill[b-eo7k3oxv4s] {
    height: 100%;
    background: linear-gradient(90deg, #1b8e5f, #2ecc71);
    border-radius: 4px;
    transition: width 0.4s ease;
}

.breakdown-count[b-eo7k3oxv4s] {
    font-size: 0.75rem;
    color: rgba(248, 253, 250, 0.5);
    width: 1.5rem;
    text-align: right;
}

/* Write review CTA */
.reviews-write-cta[b-eo7k3oxv4s] {
    display: flex;
    align-items: flex-start;
    padding-top: 0.25rem;
}

.write-review-btn[b-eo7k3oxv4s] {
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.4);
    color: #2ecc71;
    border-radius: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    white-space: nowrap;
    transition: all 0.25s ease;
    text-decoration: none;
}

    .write-review-btn:hover[b-eo7k3oxv4s] {
        background: rgba(46, 204, 113, 0.22);
        box-shadow: 0 0 14px rgba(46, 204, 113, 0.35);
        color: #2ecc71;
    }

/* Inline review form */
.review-form-panel[b-eo7k3oxv4s] {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.25rem;
}

.review-input[b-eo7k3oxv4s] {
    background: rgba(0, 0, 0, 0.45) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 0.6rem;
}

    .review-input:focus[b-eo7k3oxv4s] {
        border-color: #198754 !important;
        box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.2) !important;
    }

    .review-input[b-eo7k3oxv4s]::placeholder {
        color: rgba(255, 255, 255, 0.4) !important;
    }

/* Star buttons (shared with CourseInfoWidget) */
.star-btn[b-eo7k3oxv4s] {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.15s ease, transform 0.15s ease;
    line-height: 1;
}

    .star-btn:hover[b-eo7k3oxv4s],
    .star-btn.star-active[b-eo7k3oxv4s] {
        color: #f4c430;
    }

    .star-btn:hover[b-eo7k3oxv4s] {
        transform: scale(1.2);
    }

    .star-btn:disabled[b-eo7k3oxv4s] {
        cursor: not-allowed;
        opacity: 0.6;
    }

/* Write review submit */
.write-review-submit-btn[b-eo7k3oxv4s] {
    background: linear-gradient(90deg, #1b8e5f, #2e9d6e);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 0.6rem;
    transition: all 0.25s ease;
}

    .write-review-submit-btn:hover:not(:disabled)[b-eo7k3oxv4s] {
        box-shadow: 0 0 18px rgba(46, 204, 113, 0.5);
        transform: translateY(-1px);
    }

    .write-review-submit-btn:disabled[b-eo7k3oxv4s] {
        opacity: 0.55;
    }

/* Pending photo badges */
.photo-badge[b-eo7k3oxv4s] {
    font-size: 0.75rem;
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
    border-radius: 0.4rem;
    padding: 0.2rem 0.5rem;
}

/* Review cards */
.reviews-list[b-eo7k3oxv4s] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card[b-eo7k3oxv4s] {
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0.85rem;
    padding: 1rem 1.25rem;
    transition: border-color 0.2s ease;
}

    .review-card:hover[b-eo7k3oxv4s] {
        border-color: rgba(46, 204, 113, 0.2);
    }

.review-card-header[b-eo7k3oxv4s] {
    margin-bottom: 0.6rem;
}

.reviewer-avatar[b-eo7k3oxv4s] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(46, 204, 113, 0.35);
}

.reviewer-avatar-placeholder[b-eo7k3oxv4s] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
}

.reviewer-name[b-eo7k3oxv4s] {
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
}

.review-meta[b-eo7k3oxv4s] {
    gap: 0.5rem;
}

.review-star[b-eo7k3oxv4s] {
    font-size: 0.75rem;
}

.review-date[b-eo7k3oxv4s] {
    font-size: 0.75rem;
    color: rgba(248, 253, 250, 0.45);
}

.review-title[b-eo7k3oxv4s] {
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 0.35rem;
}

.review-body-preview[b-eo7k3oxv4s] {
    font-size: 0.875rem;
    color: rgba(248, 253, 250, 0.75);
    line-height: 1.55;
    margin-bottom: 0;
}

/* Photo thumbnails */
.review-photo-strip[b-eo7k3oxv4s] {
    flex-wrap: wrap;
}

.review-thumb[b-eo7k3oxv4s] {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: opacity 0.2s ease;
}

    .review-thumb:hover[b-eo7k3oxv4s] {
        opacity: 0.85;
    }

.review-thumb-more[b-eo7k3oxv4s] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(248, 253, 250, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 0.5rem;
}

/* See all button */
.see-all-btn[b-eo7k3oxv4s] {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(248, 253, 250, 0.75);
    border-radius: 0.6rem;
    font-size: 0.82rem;
    transition: all 0.25s ease;
}

    .see-all-btn:hover[b-eo7k3oxv4s] {
        background: rgba(46, 204, 113, 0.12);
        border-color: rgba(46, 204, 113, 0.35);
        color: #2ecc71;
    }

@media (max-width: 768px) {
    .reviews-summary-row[b-eo7k3oxv4s] {
        flex-direction: column;
        gap: 1rem;
    }

    .reviews-breakdown[b-eo7k3oxv4s] {
        min-width: unset;
        width: 100%;
    }
}
/* /Components/Pages/Widgets/ScorecardWidget.razor.rz.scp.css */
/* Scorecard table */
.scorecard-table[b-grc23uvcrj] {
    background: transparent !important;
    font-size: 0.9rem;
}

    .scorecard-table thead th[b-grc23uvcrj] {
        background: rgba(0, 0, 0, 0.3) !important;
        border-bottom: 2px solid rgba(46, 204, 113, 0.4) !important;
        color: #2ecc71;
        font-weight: 700;
        white-space: nowrap;
        padding: 0.6rem 0.5rem;
    }

    .scorecard-table tbody td[b-grc23uvcrj] {
        background: transparent !important;
        border-color: rgba(255, 255, 255, 0.06) !important;
        padding: 0.5rem;
        vertical-align: middle;
    }

    .scorecard-table tbody tr:hover td[b-grc23uvcrj] {
        background: rgba(255, 255, 255, 0.05) !important;
    }

.sticky-col[b-grc23uvcrj] {
    position: sticky;
    left: 0;
    background: rgba(10, 61, 46, 0.95) !important;
    z-index: 1;
    min-width: 80px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .scorecard-table[b-grc23uvcrj] {
        font-size: 0.8rem;
    }
}
/* /Components/Pages/Widgets/WeatherWidget.razor.rz.scp.css */
/* ── Current Conditions – compact strip ─────────── */
.current-conditions-header[b-n6fb9ok42u] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.live-dot[b-n6fb9ok42u] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
    animation: live-pulse-b-n6fb9ok42u 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes live-pulse-b-n6fb9ok42u {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
    50%       { box-shadow: 0 0 0 5px rgba(74, 222, 128, 0); }
}

.cc-title[b-n6fb9ok42u] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(248, 253, 250, 0.7);
}

.weather-strip[b-n6fb9ok42u] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    padding: 0.6rem 0.75rem;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
}

.ws-icon[b-n6fb9ok42u] {
    font-size: 1.6rem;
    line-height: 1;
}

.ws-temp[b-n6fb9ok42u] {
    font-size: 1.45rem;
    font-weight: 700;
    color: #f8fdfa;
    line-height: 1;
}

.ws-divider[b-n6fb9ok42u] {
    color: rgba(248, 253, 250, 0.3);
    font-size: 1rem;
}

.ws-sep[b-n6fb9ok42u] {
    color: rgba(248, 253, 250, 0.2);
    font-size: 1rem;
    margin: 0 0.15rem;
}

.ws-feels[b-n6fb9ok42u] {
    font-size: 0.85rem;
    color: rgba(248, 253, 250, 0.65);
}

.ws-desc[b-n6fb9ok42u] {
    font-size: 0.9rem;
    color: rgba(248, 253, 250, 0.8);
    font-weight: 500;
}

.ws-pill[b-n6fb9ok42u] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 0.2rem 0.65rem;
    font-size: 0.82rem;
    color: #f0f4f8;
    white-space: nowrap;
}

    .ws-pill i[b-n6fb9ok42u] {
        color: #a8d8f0;
        font-size: 0.82rem;
    }

.ws-gust[b-n6fb9ok42u] {
    color: rgba(248, 253, 250, 0.55);
    font-size: 0.75rem;
}

.ws-pill-label[b-n6fb9ok42u] {
    font-weight: 600;
    color: rgba(248, 253, 250, 0.75);
    margin-right: 0.1rem;
}

/* UV pill colours */
.uv-pill.uv-low[b-n6fb9ok42u]      { border-color: rgba(134, 239, 172, 0.4); }
.uv-pill.uv-moderate[b-n6fb9ok42u] { background: rgba(253, 224, 71, 0.15); border-color: rgba(253, 224, 71, 0.4); color: #fde047; }
.uv-pill.uv-high[b-n6fb9ok42u]     { background: rgba(251, 146, 60, 0.15); border-color: rgba(251, 146, 60, 0.4); color: #fb923c; }
.uv-pill.uv-very-high[b-n6fb9ok42u] { background: rgba(248, 113, 113, 0.15); border-color: rgba(248, 113, 113, 0.4); color: #f87171; }
.uv-pill.uv-extreme[b-n6fb9ok42u]  { background: rgba(192, 132, 252, 0.15); border-color: rgba(192, 132, 252, 0.4); color: #c084fc; }

/* ── 5-Day Forecast ──────────────────────────────── */
.forecast-header[b-n6fb9ok42u] {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.75rem;
    color: rgba(248, 253, 250, 0.85);
}

.forecast-row[b-n6fb9ok42u] {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(168, 216, 240, 0.3) transparent;
}

    .forecast-row[b-n6fb9ok42u]::-webkit-scrollbar {
        height: 4px;
    }

    .forecast-row[b-n6fb9ok42u]::-webkit-scrollbar-thumb {
        background: rgba(168, 216, 240, 0.3);
        border-radius: 2px;
    }

.forecast-card[b-n6fb9ok42u] {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    padding: 0.85rem 0.9rem;
    min-width: 145px;
    flex: 1;
    text-align: center;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .forecast-card:hover[b-n6fb9ok42u] {
        background: rgba(255, 255, 255, 0.13);
        transform: translateY(-2px);
    }

.fc-day[b-n6fb9ok42u] {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #f8fdfa;
    margin-bottom: 0.35rem;
}

.fc-icon[b-n6fb9ok42u] {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.fc-desc[b-n6fb9ok42u] {
    font-size: 0.88rem;
    color: rgba(248, 253, 250, 0.8);
    margin-bottom: 0.4rem;
    line-height: 1.25;
    min-height: 2.5em;
}

.fc-temps[b-n6fb9ok42u] {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.fc-high[b-n6fb9ok42u] { color: #f8fdfa; }
.fc-sep[b-n6fb9ok42u]  { color: rgba(248, 253, 250, 0.3); margin: 0 0.15rem; }
.fc-low[b-n6fb9ok42u]  { color: rgba(248, 253, 250, 0.5); }

.fc-feels[b-n6fb9ok42u] {
    font-size: 0.82rem;
    color: rgba(248, 253, 250, 0.55);
    margin-bottom: 0.5rem;
}

.fc-detail[b-n6fb9ok42u] {
    font-size: 0.86rem;
    color: rgba(248, 253, 250, 0.8);
    margin-bottom: 0.2rem;
    white-space: nowrap;
    text-align: left;
}

    .fc-detail i[b-n6fb9ok42u] {
        color: #a8d8f0;
        margin-right: 0.25rem;
        font-size: 0.84rem;
    }

/* Responsive */
@media (max-width: 576px) {
    .ws-temp[b-n6fb9ok42u] {
        font-size: 1.25rem;
    }

    .forecast-card[b-n6fb9ok42u] {
        min-width: 130px;
        padding: 0.7rem 0.75rem;
    }

    .fc-icon[b-n6fb9ok42u] {
        font-size: 2.1rem;
    }
}
