/* /Components/Layout/MainLayout.razor.rz.scp.css */
.topbar[b-4kxegkxtl4] {
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--nav-border-color);
    display: flex;
    align-items: center;
    padding: 0 28px;
    height: 54px;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo[b-4kxegkxtl4] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--on-nav);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.01em;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity .15s;
}

.logo:hover[b-4kxegkxtl4] { opacity: .85; }

.logo-mark[b-4kxegkxtl4] {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: var(--logo-mark-bg);
    border: 1.5px solid var(--logo-mark-border);
    box-shadow: var(--logo-mark-shadow);
    display: grid;
    place-items: center;
    overflow: hidden;
    transition: background .35s, border-color .35s, box-shadow .35s;
    animation: var(--logo-pulse, none);
    flex-shrink: 0;
}

.logo-icon[b-4kxegkxtl4] {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.topbar-nav[b-4kxegkxtl4] {
    display: flex;
    gap: 2px;
    flex: 1;
}

.topbar-right[b-4kxegkxtl4] {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-link[b-4kxegkxtl4] {
    color: var(--nav-text);
    font-size: 13.5px;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: color .2s, text-shadow .2s;
    text-decoration: none;
}

.nav-link:hover[b-4kxegkxtl4] {
    color: var(--nav-text-hover-c);
    text-shadow: var(--nav-link-hover-shadow);
}

.theme-toggle[b-4kxegkxtl4] {
    background: transparent;
    color: var(--toggle-color);
    border: 1px solid var(--toggle-border);
    box-shadow: var(--toggle-shadow);
    border-radius: 4px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: color .3s, border-color .3s, box-shadow .3s;
}

.theme-toggle:hover[b-4kxegkxtl4] { color: var(--toggle-hover-color); }

/* ── User menu (details/summary dropdown) ── */

.user-menu[b-4kxegkxtl4] {
    position: relative;
}

.user-menu summary[b-4kxegkxtl4] { list-style: none; }
.user-menu summary[b-4kxegkxtl4]::-webkit-details-marker { display: none; }

.user-chip[b-4kxegkxtl4] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 4px;
    border-radius: 22px;
    border: 1px solid var(--user-chip-bd);
    cursor: pointer;
    transition: background .15s, border-color .2s;
    user-select: none;
}

.user-chip:hover[b-4kxegkxtl4] {
    background: var(--user-chip-hover-bg);
    border-color: var(--user-chip-open-bd);
}

.user-menu[open] .user-chip[b-4kxegkxtl4] {
    background: var(--user-chip-open-bg);
    border-color: var(--user-chip-open-bd);
}

.user-avatar[b-4kxegkxtl4] {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--user-avatar-bd);
    flex-shrink: 0;
}

.user-name[b-4kxegkxtl4] {
    color: var(--user-name-c);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-caret[b-4kxegkxtl4] {
    color: var(--user-caret-c);
    font-size: 10px;
    transition: transform .2s;
    line-height: 1;
}

.user-menu[open] .user-caret[b-4kxegkxtl4] {
    transform: rotate(180deg);
}

.user-dropdown[b-4kxegkxtl4] {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: var(--dropdown-bg);
    border: 1px solid var(--dropdown-bd);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
    padding: 6px;
    z-index: 200;
    animation: dropdown-in-b-4kxegkxtl4 .12s ease;
}

@keyframes dropdown-in-b-4kxegkxtl4 {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dropdown-item[b-4kxegkxtl4] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 6px;
    color: var(--dropdown-item-c);
    font-size: 13.5px;
    text-decoration: none;
    transition: background .12s, color .12s;
}

.dropdown-item:hover[b-4kxegkxtl4] {
    background: var(--dropdown-item-hover-bg);
    color: var(--dropdown-item-hover-c);
}

.dropdown-icon[b-4kxegkxtl4] {
    font-size: 14px;
    width: 18px;
    text-align: center;
    opacity: .7;
}

.dropdown-divider[b-4kxegkxtl4] {
    height: 1px;
    background: rgba(192,192,236,.1);
    margin: 4px 6px;
}

.dropdown-item--signout[b-4kxegkxtl4] { color: rgba(255,120,100,.8); }
.dropdown-item--signout:hover[b-4kxegkxtl4] { background: rgba(255,80,60,.08); color: rgba(255,140,120,1); }

.dropdown-item--about[b-4kxegkxtl4] { opacity: 0.7; font-size: 12.5px; }
.dropdown-item--about:hover[b-4kxegkxtl4] { opacity: 1; }

.btn-signin[b-4kxegkxtl4] {
    background: transparent;
    color: var(--tertiary);
    border: 1.5px solid var(--tertiary);
    box-shadow: none;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: .02em;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s, color .3s, border-color .3s;
}

.btn-signin:hover[b-4kxegkxtl4] { background: var(--tertiary-dim); }

.main-content[b-4kxegkxtl4] {
    min-height: calc(100vh - 54px);
}

.not-found[b-4kxegkxtl4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    gap: 12px;
    color: var(--text-2);
}

.not-found h1[b-4kxegkxtl4] {
    font-size: 72px;
    font-weight: 800;
    color: var(--text-3);
    line-height: 1;
}

/* ── Hamburger button ───────────────────────────────── */

.hamburger[b-4kxegkxtl4] {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 7px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    flex-shrink: 0;
}

.hamburger span[b-4kxegkxtl4] {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--hamburger-c);
    border-radius: 2px;
    transition: transform .22s ease, opacity .18s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1)[b-4kxegkxtl4] { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2)[b-4kxegkxtl4] { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3)[b-4kxegkxtl4] { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu panel ──────────────────────────────── */

.mobile-menu[b-4kxegkxtl4] {
    display: none;
    flex-direction: column;
    position: sticky;
    top: 54px;
    z-index: 99;
    background: var(--mobile-menu-bg);
    border-bottom: 1px solid var(--mobile-menu-bd);
    padding: 8px 0 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.mobile-menu.open[b-4kxegkxtl4] {
    display: flex;
}

.mobile-nav-link[b-4kxegkxtl4] {
    display: block;
    padding: 12px 24px;
    color: var(--mobile-link-c);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background .12s, color .12s;
}

.mobile-nav-link:hover[b-4kxegkxtl4],
.mobile-nav-link:active[b-4kxegkxtl4] {
    background: var(--mobile-link-hover-bg);
    color: var(--text);
}

.mobile-nav-link--signout[b-4kxegkxtl4] {
    color: rgba(255,120,100,.8);
}

.mobile-nav-link--signout:hover[b-4kxegkxtl4] {
    background: rgba(255,80,60,.08);
    color: rgba(255,150,130,1);
}

.mobile-menu-divider[b-4kxegkxtl4] {
    height: 1px;
    background: rgba(192,192,236,.1);
    margin: 8px 20px;
}

.mobile-theme-toggle[b-4kxegkxtl4] {
    display: block;
    width: calc(100% - 48px);
    margin: 4px 24px;
    padding: 10px 14px;
    background: transparent;
    color: var(--toggle-color);
    border: 1px solid var(--toggle-border);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    cursor: pointer;
    text-align: left;
    transition: color .2s, border-color .2s;
}

.mobile-user-row[b-4kxegkxtl4] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px 6px;
}

.mobile-user-name[b-4kxegkxtl4] {
    color: var(--mobile-link-c);
    font-size: 13px;
}

.mobile-signin[b-4kxegkxtl4] {
    display: block;
    margin: 8px 24px 0;
    padding: 11px 18px;
    background: transparent;
    color: var(--tertiary);
    border: 1px solid var(--tertiary);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    letter-spacing: .03em;
    transition: box-shadow .2s;
}

/* ── Responsive breakpoint ──────────────────────────── */

@media (max-width: 800px) {
    .topbar-nav[b-4kxegkxtl4],
    .topbar-right[b-4kxegkxtl4] {
        display: none;
    }

    .hamburger[b-4kxegkxtl4] {
        display: flex;
    }
}

/* /Components/Pages/About.razor.rz.scp.css */
.about-shell[b-2mh9gegpbl] {
    min-height: calc(100vh - 54px);
    padding: 40px 0 80px;
}

.about-body[b-2mh9gegpbl] {
    max-width: 680px;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-body p[b-2mh9gegpbl] {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.7;
    margin: 0;
}

.about-body h2[b-2mh9gegpbl] {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin: 12px 0 0;
}

.about-body ul[b-2mh9gegpbl] {
    margin: 0;
    padding-left: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-body li[b-2mh9gegpbl] {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.6;
}

.about-body a[b-2mh9gegpbl] {
    color: var(--secondary);
}

.about-links[b-2mh9gegpbl] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.about-version[b-2mh9gegpbl] {
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-3);
}
/* /Components/Pages/AddPlace.razor.rz.scp.css */
/* ── Shell ──────────────────────────────────────────────────────── */

.add-shell[b-syl6t6lvmt] {
    padding-bottom: 80px;
}

.section-inner[b-syl6t6lvmt] {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 28px;
}

@media (max-width: 640px) {
    .section-inner[b-syl6t6lvmt] {
        padding: 0 16px;
    }
}

/* ── Headings ───────────────────────────────────────────────────── */

.add-hed[b-syl6t6lvmt] {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--text);
    margin: 8px 0 12px;
    line-height: 1.15;
    outline: none;
}

body.dark .add-hed[b-syl6t6lvmt] {
    text-transform: uppercase;
    letter-spacing: .02em;
}

.add-sub[b-syl6t6lvmt] {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.65;
    max-width: 52ch;
    margin-bottom: 32px;
}

/* ── Step 1 input ───────────────────────────────────────────────── */

.add-input-group[b-syl6t6lvmt] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.add-input[b-syl6t6lvmt] {
    flex: 1;
    min-width: 240px;
    padding: 11px 16px;
    border-radius: 8px;
    border: 1.5px solid var(--card-border);
    background: var(--card-bg);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color .15s;
}

.add-input:focus[b-syl6t6lvmt] { border-color: var(--accent); }

/* ── Error ──────────────────────────────────────────────────────── */

.add-error[b-syl6t6lvmt] {
    background: rgba(229, 57, 53, .08);
    border: 1px solid rgba(229, 57, 53, .3);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13.5px;
    color: #C62828;
    margin-top: 12px;
    line-height: 1.5;
}

body.dark .add-error[b-syl6t6lvmt] {
    background: rgba(229, 57, 53, .15);
    border-color: rgba(229, 57, 53, .45);
    color: #EF9A9A;
}

/* ── Map ────────────────────────────────────────────────────────── */

.add-map-wrap[b-syl6t6lvmt] {
    margin-bottom: 0;
    isolation: isolate;
}

.add-map[b-syl6t6lvmt] {
    height: 280px;
    background: var(--page-bg-soft);
}

.add-map-hint[b-syl6t6lvmt] {
    font-size: 11.5px;
    color: var(--text-3);
    font-family: 'SF Mono', 'Courier New', monospace;
    letter-spacing: .05em;
    padding: 8px 28px;
    background: var(--page-bg-soft);
    margin: 0;
}

/* ── Form ───────────────────────────────────────────────────────── */

.add-form[b-syl6t6lvmt] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 28px;
}

.form-field[b-syl6t6lvmt] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field--row[b-syl6t6lvmt] {
    flex-direction: row;
    gap: 16px;
}

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

.form-label[b-syl6t6lvmt] {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-3);
    font-family: 'SF Mono', 'Courier New', monospace;
}

.form-label-row[b-syl6t6lvmt] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.btn-generate[b-syl6t6lvmt] {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent, #6366f1);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
}

    .btn-generate:disabled[b-syl6t6lvmt] {
        opacity: .4;
        cursor: default;
    }

    .btn-generate--busy[b-syl6t6lvmt] {
        opacity: .6;
        cursor: default;
        text-decoration: none;
    }

.add-generate-hint[b-syl6t6lvmt] {
    font-size: 12px;
    color: var(--text-3);
}

.add-ai-notice[b-syl6t6lvmt] {
    font-size: 12px;
    color: #d97706;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 6px;
    padding: 6px 10px;
}

.add-citations[b-syl6t6lvmt] {
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-muted, #6b7280);
}

.add-citations__label[b-syl6t6lvmt] {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 10px;
    display: block;
    margin-bottom: 4px;
}

.add-citations__list[b-syl6t6lvmt] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.add-citations__list a[b-syl6t6lvmt] {
    color: var(--accent, #CE7C38);
    text-decoration: none;
    word-break: break-all;
}

.add-citations__list a:hover[b-syl6t6lvmt] {
    text-decoration: underline;
}

.form-required[b-syl6t6lvmt] {
    color: var(--accent);
}

.form-input[b-syl6t6lvmt] {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1.5px solid var(--card-border);
    background: var(--card-bg);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color .15s, background .3s;
    width: 100%;
    box-sizing: border-box;
}

.form-input:focus[b-syl6t6lvmt] { border-color: var(--accent); }

.form-input--readonly[b-syl6t6lvmt] {
    background: var(--page-bg-soft);
    color: var(--text-2);
    cursor: default;
    border-color: transparent;
}

.form-select[b-syl6t6lvmt] {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-textarea[b-syl6t6lvmt] {
    resize: vertical;
    min-height: 96px;
    line-height: 1.6;
}

/* ── Actions ────────────────────────────────────────────────────── */

.add-actions[b-syl6t6lvmt] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 8px;
    flex-wrap: wrap;
}

.add-actions--centered[b-syl6t6lvmt] {
    justify-content: center;
}

.add-submit-group[b-syl6t6lvmt] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Success ────────────────────────────────────────────────────── */

.add-success[b-syl6t6lvmt] {
    padding-top: 72px;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.success-icon[b-syl6t6lvmt] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--tertiary);
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
/* /Components/Pages/CompleteProfile.razor.rz.scp.css */
.picker-shell[b-wsgeqrmq75] {
    min-height: calc(100vh - 54px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.picker-card[b-wsgeqrmq75] {
    background: #fff;
    border: 1px solid rgba(160, 148, 210, .22);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 4px 32px rgba(51, 90, 255, .07);
}

.picker-title[b-wsgeqrmq75] {
    font-size: 1.75rem;
    font-weight: 800;
    color: #16122e;
    margin: .25rem 0 .5rem;
    line-height: 1.2;
    text-wrap: balance;
}

.picker-sub[b-wsgeqrmq75] {
    color: #5a5280;
    font-size: .9375rem;
    line-height: 1.55;
    margin: 0 0 1.75rem;
}

/* Validation state rings on the input */
.form-input--ok[b-wsgeqrmq75] {
    border-color: #22c55e !important;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .15) !important;
    outline: none;
}

.form-input--err[b-wsgeqrmq75] {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, .15) !important;
    outline: none;
}

.field-hint[b-wsgeqrmq75] {
    font-size: .8125rem;
    color: #a098c0;
    margin: .375rem 0 0;
    min-height: 1.2em;
}

.hint--ok[b-wsgeqrmq75]  { color: #22c55e; }
.hint--err[b-wsgeqrmq75] { color: #ef4444; }

.submit-error[b-wsgeqrmq75] {
    color: #ef4444;
    font-size: .875rem;
    margin: .75rem 0 0;
}

.picker-submit[b-wsgeqrmq75] {
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Dark mode */
body.dark .picker-card[b-wsgeqrmq75] {
    background: #0f1525;
    border-color: rgba(160, 148, 210, .15);
    box-shadow: 0 4px 32px rgba(0, 0, 0, .3);
}

body.dark .picker-title[b-wsgeqrmq75] {
    color: #d8d8f0;
}

body.dark .picker-sub[b-wsgeqrmq75] {
    color: #a098c0;
}
/* /Components/Pages/Explore.razor.rz.scp.css */
/* ── Header band ───────────────────────────────────────────────── */

.explore-header[b-vmykaa4fyo] {
    background: var(--page-bg-soft);
    padding: 40px 0 28px;
}

.section-inner[b-vmykaa4fyo] {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 28px;
}

.explore-hed[b-vmykaa4fyo] {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--text);
    margin: 8px 0 24px;
    line-height: 1.15;
}

body.dark .explore-hed[b-vmykaa4fyo] {
    text-transform: uppercase;
    letter-spacing: .02em;
}

/* ── Search ─────────────────────────────────────────────────────── */

.explore-controls[b-vmykaa4fyo] {
    margin-bottom: 18px;
}

.search-input[b-vmykaa4fyo] {
    width: 100%;
    max-width: 480px;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1.5px solid var(--card-border);
    background: var(--card-bg);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color .15s, background .15s;
}

.search-input[b-vmykaa4fyo]::placeholder { color: var(--text-3); }

.search-input:focus[b-vmykaa4fyo] {
    border-color: var(--accent);
    background: var(--card-bg);
}

/* ── Category chips ─────────────────────────────────────────────── */

.category-chips[b-vmykaa4fyo] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip[b-vmykaa4fyo] {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    background: var(--tertiary-dim);
    color: var(--tertiary);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
    font-family: inherit;
    text-decoration: none;
}

.chip--active[b-vmykaa4fyo] {
    background: var(--tertiary);
    color: #fff;
    border-color: var(--tertiary-dark);
}

/* ── Body ───────────────────────────────────────────────────────── */

.explore-body[b-vmykaa4fyo] {
    padding: 36px 0 64px;
}

.explore-count[b-vmykaa4fyo] {
    font-size: 12px;
    color: var(--text-3);
    font-family: 'SF Mono', 'Courier New', monospace;
    letter-spacing: .06em;
    margin-bottom: 20px;
}

.explore-empty[b-vmykaa4fyo] {
    color: var(--text-2);
    font-size: 15px;
    padding: 40px 0;
}

/* ── Grid ───────────────────────────────────────────────────────── */

.explore-grid[b-vmykaa4fyo] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.explore-card[b-vmykaa4fyo] {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    min-height: 160px;
    transition: box-shadow .2s, transform .2s;
}

.explore-card:hover[b-vmykaa4fyo] {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-2px);
}

.explore-card-body[b-vmykaa4fyo] {
    padding: 20px 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.explore-card-name[b-vmykaa4fyo] {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.explore-card-desc[b-vmykaa4fyo] {
    font-size: 12.5px;
    color: var(--text-2);
    line-height: 1.55;
    margin: 0;
}

.explore-card-footer[b-vmykaa4fyo] {
    padding: 12px 20px 16px;
    border-top: 1px solid var(--card-border);
}

.explore-card-cta[b-vmykaa4fyo] {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--accent);
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ── Sections ──────────────────────────────────────────────────────── */

.home-section[b-lceaamoc1b] {
    padding: 36px 0 48px;
}

.home-section--alt[b-lceaamoc1b] {
    background: var(--page-bg-soft);
}

.home-section--dark[b-lceaamoc1b] {
    background: var(--dark-section-bg);
    padding: 72px 0;
}

.section-inner--centered[b-lceaamoc1b] {
    text-align: center;
}

.section-hed[b-lceaamoc1b] {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--text);
    margin-top: 6px;
    margin-bottom: 4px;
    transition: color .3s;
}

.section-sub[b-lceaamoc1b] {
    font-size: 14.5px;
    color: var(--text-2);
    line-height: 1.65;
    margin-top: 4px;
    margin-bottom: 20px;
    max-width: 520px;
}

.section-hed--light[b-lceaamoc1b] {
    color: #ffffff;
    font-size: 32px;
}

body.dark .section-hed[b-lceaamoc1b] {
    text-transform: uppercase;
    letter-spacing: .02em;
}

/* ── Place of the Day ──────────────────────────────────────────────── */

.potd-card[b-lceaamoc1b] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    border-radius: 14px;
    padding: 32px 36px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s, transform .2s, background .35s, border-color .35s;
    max-width: 680px;
}

.potd-card:hover[b-lceaamoc1b] {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-2px);
}

.potd-meta[b-lceaamoc1b] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.potd-date[b-lceaamoc1b] {
    font-size: 11.5px;
    color: var(--text-3);
    font-family: 'SF Mono', 'Courier New', monospace;
    letter-spacing: .06em;
}

.potd-name[b-lceaamoc1b] {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.15;
}

.potd-desc[b-lceaamoc1b] {
    font-size: 14.5px;
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 24px;
}

.potd-cta[b-lceaamoc1b] {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ── Bento grid ────────────────────────────────────────────────────── */

.bento-grid[b-lceaamoc1b] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.bento-card[b-lceaamoc1b] {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    min-height: 140px;
}

.bento-img[b-lceaamoc1b] {
    height: 110px;
    background: var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    flex-shrink: 0;
    border-bottom: 1px solid var(--card-border);
}

.bento-card-body[b-lceaamoc1b] {
    padding: 16px 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.bento-name[b-lceaamoc1b] {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.bento-desc[b-lceaamoc1b] {
    font-size: 12.5px;
    color: var(--text-2);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.bento-foot[b-lceaamoc1b] {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    padding: 10px 20px 14px;
    border-top: 1px solid var(--card-border);
    font-size: 11.5px;
    color: var(--text-3);
    font-family: 'SF Mono', 'Courier New', monospace;
    letter-spacing: .02em;
}

.bento-contributor[b-lceaamoc1b] {
    color: var(--accent);
    font-weight: 600;
}

.bento-foot-sep[b-lceaamoc1b] {
    color: var(--text-3);
    opacity: .5;
}

.bento-age[b-lceaamoc1b] {
    color: var(--text-3);
    white-space: nowrap;
}

/* ── Map ───────────────────────────────────────────────────────────── */

.map-container[b-lceaamoc1b] {
    position: relative;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    background: var(--page-bg-soft);
}

.map-overlay-btn[b-lceaamoc1b] {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 500;
    font-size: 13px;
    padding: 9px 18px;
    background: #335AFF !important;
    color: #FFFFFF !important;
    box-shadow: 0 2px 12px rgba(0,0,0,.28);
}

/* ── Geolocation control ───────────────────────────────────────────── */

.map-geo-btn[b-lceaamoc1b] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 7px 12px;
    background: #fff;
    border: 2px solid rgba(0,0,0,.2);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(0,0,0,.2);
    white-space: nowrap;
    transition: background .15s;
    margin-top: 10px;
    margin-right: 10px;
}

.map-geo-btn:hover:not(:disabled)[b-lceaamoc1b] {
    background: #f4f4f4;
}

.map-geo-btn:disabled[b-lceaamoc1b] {
    opacity: .7;
    cursor: default;
}

.map-geo-notice[b-lceaamoc1b] {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(26, 47, 85, 0.92);
    color: #fff;
    font-size: 13px;
    padding: 10px 18px;
    border-radius: 8px;
    max-width: 340px;
    text-align: center;
    pointer-events: none;
    backdrop-filter: blur(4px);
}

/* ── Download section ──────────────────────────────────────────────── */

.download-sub[b-lceaamoc1b] {
    color: rgba(255,255,255,.6);
    font-size: 15px;
    max-width: 42ch;
    margin: 0 auto 32px;
    line-height: 1.65;
}

.download-badges[b-lceaamoc1b] {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-placeholder[b-lceaamoc1b] {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.5);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'SF Mono', 'Courier New', monospace;
}

/* ── Footer ────────────────────────────────────────────────────────── */

.site-footer[b-lceaamoc1b] {
    background: var(--footer-bg);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 28px 0;
}

.footer-inner[b-lceaamoc1b] {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-brand[b-lceaamoc1b] {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    letter-spacing: -.01em;
}

.footer-nav[b-lceaamoc1b] {
    display: flex;
    gap: 20px;
    flex: 1;
}

.footer-nav a[b-lceaamoc1b] {
    font-size: 13px;
    color: rgba(255,255,255,.4);
    text-decoration: none;
    transition: color .15s;
}

.footer-nav a:hover[b-lceaamoc1b] { color: rgba(255,255,255,.75); }

.footer-copy[b-lceaamoc1b] {
    font-size: 12px;
    color: rgba(255,255,255,.25);
    font-family: 'SF Mono', 'Courier New', monospace;
}
/* /Components/Pages/Map.razor.rz.scp.css */
.full-map-shell[b-mm464697sl] {
    position: relative;
    height: calc(100vh - 54px);
    width: 100%;
}

#full-map[b-mm464697sl] {
    height: 100%;
    width: 100%;
}

/* ── Status bar ──────────────────────────────────── */

.map-status[b-mm464697sl] {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(22,18,46,.88);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .03em;
    padding: 7px 18px;
    border-radius: 20px;
    pointer-events: none;
    backdrop-filter: blur(6px);
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0,0,0,.25);
    transition: opacity .2s;
}

.map-status--loading[b-mm464697sl] {
    background: rgba(123,92,240,.88);
}

.map-status--truncated[b-mm464697sl] {
    background: rgba(206, 124, 56, 0.92);
}
/* /Components/Pages/MyPlaces.razor.rz.scp.css */
.my-shell[b-ls6ehmfi8m] {
    padding: 40px 0 64px;
}

.my-hed[b-ls6ehmfi8m] {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -.025em;
    color: var(--text);
    margin: 0 0 32px;
}

/* ── Tabs ─────────────────────────────────────────── */
.my-tabs[b-ls6ehmfi8m] {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid var(--card-border);
    margin-bottom: 28px;
}

.my-tab[b-ls6ehmfi8m] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-2);
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
}

.my-tab:hover[b-ls6ehmfi8m] {
    color: var(--text);
}

.my-tab--active[b-ls6ehmfi8m] {
    color: var(--text);
    border-bottom-color: var(--accent);
}

.my-tab-badge[b-ls6ehmfi8m] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--accent);
    color: #fff;
    border-radius: 9px;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
}

/* ── Empty states ─────────────────────────────────── */
.my-empty[b-ls6ehmfi8m] {
    color: var(--text-2);
    font-size: 0.95rem;
    padding: 32px 0;
}

.my-empty--error[b-ls6ehmfi8m] {
    color: var(--status-rejected);
}

.my-empty a[b-ls6ehmfi8m] {
    color: var(--accent);
    text-decoration: none;
}

.my-empty a:hover[b-ls6ehmfi8m] {
    text-decoration: underline;
}

/* ── Card grid ────────────────────────────────────── */
.my-grid[b-ls6ehmfi8m] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.my-card[b-ls6ehmfi8m] {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background .35s, border-color .35s;
}

.my-card-header[b-ls6ehmfi8m] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.my-card-date[b-ls6ehmfi8m] {
    font-size: 0.78rem;
    color: var(--text-3);
}

.my-card-name[b-ls6ehmfi8m] {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -.01em;
    color: var(--text);
    margin: 0;
    line-height: 1.3;
}

.my-card-category[b-ls6ehmfi8m] {
    font-size: 0.82rem;
    color: var(--text-2);
    margin: 0;
}

/* ── Status badges ────────────────────────────────── */
.my-badge[b-ls6ehmfi8m] {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.my-badge--draft[b-ls6ehmfi8m] {
    background: var(--accent-dim);
    color: var(--text-2);
}

.my-badge--submitted[b-ls6ehmfi8m] {
    background: rgba(51,90,255,.10);
    color: var(--accent);
}

.my-badge--approved[b-ls6ehmfi8m] {
    background: #EBF7EC;
    color: #2E7D32;
}

.my-badge--rejected[b-ls6ehmfi8m] {
    background: #FEECEC;
    color: #C62828;
}

body.dark .my-badge--approved[b-ls6ehmfi8m] {
    background: rgba(82,192,90,.1);
    color: #52C05A;
}

body.dark .my-badge--rejected[b-ls6ehmfi8m] {
    background: rgba(240,80,80,.1);
    color: #F05050;
}

/* ── Reviewer note ────────────────────────────────── */
.my-card-note[b-ls6ehmfi8m] {
    background: rgba(229,57,53,.06);
    border-left: 3px solid #E53935;
    padding: 8px 12px;
    border-radius: 0 6px 6px 0;
    font-size: 0.83rem;
    color: var(--text);
    line-height: 1.4;
}

.my-card-note-label[b-ls6ehmfi8m] {
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #C62828;
}

/* ── Card actions ─────────────────────────────────── */
.my-card-actions[b-ls6ehmfi8m] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.my-confirm-inline[b-ls6ehmfi8m] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.83rem;
    color: var(--text);
}

.my-action-error[b-ls6ehmfi8m] {
    font-size: 0.82rem;
    color: #C62828;
    margin: 0;
}

body.dark .my-action-error[b-ls6ehmfi8m] { color: #F05050; }

/* ── Small button variants ────────────────────────── */
.btn-sm[b-ls6ehmfi8m] {
    padding: 5px 14px;
    font-size: 0.82rem;
}

.btn-danger[b-ls6ehmfi8m] {
    background: #E53935;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: background 0.15s;
}

.btn-danger:hover[b-ls6ehmfi8m] {
    background: #C62828;
}

.btn-ghost[b-ls6ehmfi8m] {
    background: none;
    color: var(--text-2);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    padding: 5px 8px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
}

.btn-ghost:hover[b-ls6ehmfi8m] {
    color: var(--text);
    background: var(--accent-dim);
}
/* /Components/Pages/PlaceDetail.razor.rz.scp.css */
/* ── Shell ──────────────────────────────────────────────────────── */

.detail-shell[b-nfylaj3w5m] {
    padding-bottom: 72px;
}

.section-inner[b-nfylaj3w5m] {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ── Map ────────────────────────────────────────────────────────── */

.detail-map-wrap[b-nfylaj3w5m] {
    width: 100%;
    margin-bottom: 0;
}

.detail-map[b-nfylaj3w5m] {
    height: 320px;
    background: var(--page-bg-soft);
}

/* ── Back link ──────────────────────────────────────────────────── */

.detail-back[b-nfylaj3w5m] {
    display: inline-block;
    margin-top: 28px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: .03em;
    transition: opacity .15s;
}

.detail-back:hover[b-nfylaj3w5m] { opacity: .72; }

/* ── Meta row ───────────────────────────────────────────────────── */

.detail-meta[b-nfylaj3w5m] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.detail-date[b-nfylaj3w5m] {
    font-size: 11.5px;
    color: var(--text-3);
    font-family: 'SF Mono', 'Courier New', monospace;
    letter-spacing: .06em;
}

/* ── Name ───────────────────────────────────────────────────────── */

.detail-name[b-nfylaj3w5m] {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -.025em;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 20px;
    text-wrap: balance;
    outline: none;
}

body.dark .detail-name[b-nfylaj3w5m] {
    text-transform: uppercase;
    letter-spacing: .01em;
}

/* ── Description ────────────────────────────────────────────────── */

.detail-desc[b-nfylaj3w5m] {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-2);
    max-width: 65ch;
    margin-bottom: 36px;
}

/* ── Facts ──────────────────────────────────────────────────────── */

.detail-facts[b-nfylaj3w5m] {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 1px solid var(--card-border);
    padding-top: 24px;
}

.detail-fact[b-nfylaj3w5m] {
    display: flex;
    gap: 16px;
    align-items: baseline;
    flex-wrap: wrap;
}

.detail-fact-label[b-nfylaj3w5m] {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-3);
    font-family: 'SF Mono', 'Courier New', monospace;
    min-width: 120px;
}

.detail-fact-value[b-nfylaj3w5m] {
    font-size: 14px;
    color: var(--text);
}

.detail-source-link[b-nfylaj3w5m] {
    font-size: 14px;
    color: var(--accent);
    text-decoration: none;
    transition: opacity .15s;
}

.detail-source-link:hover[b-nfylaj3w5m] { opacity: .72; }

/* ── Missing / error ────────────────────────────────────────────── */

.detail-missing[b-nfylaj3w5m] {
    color: var(--text-2);
    font-size: 15px;
    padding: 40px 0;
}
/* /Components/Pages/Releases.razor.rz.scp.css */
.releases-shell[b-ru25qw4ut8] {
    min-height: calc(100vh - 54px);
    padding: 40px 0 80px;
}

.releases-list[b-ru25qw4ut8] {
    margin-top: 32px;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.release-card[b-ru25qw4ut8] {
    border: 1px solid var(--card-border);
    border-radius: 12px;
    background: var(--card-bg);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.release-header[b-ru25qw4ut8] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.release-version-row[b-ru25qw4ut8] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.release-version[b-ru25qw4ut8] {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    font-variant-numeric: tabular-nums;
}

.release-current[b-ru25qw4ut8] {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--accent, #CE7C38);
    background: color-mix(in srgb, var(--accent, #CE7C38) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent, #CE7C38) 30%, transparent);
    border-radius: 20px;
    padding: 2px 9px;
}

.release-date[b-ru25qw4ut8] {
    font-size: 13px;
    color: var(--text-3);
}

.release-notes[b-ru25qw4ut8] {
    margin: 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.release-notes li[b-ru25qw4ut8] {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.6;
}
/* /Components/Pages/Settings.razor.rz.scp.css */
.settings-shell[b-0t958zkqna] {
    min-height: calc(100vh - 54px);
    padding: 40px 0 80px;
}

.settings-grid[b-0t958zkqna] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.settings-card[b-0t958zkqna] {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.settings-card-header[b-0t958zkqna] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.settings-card-icon[b-0t958zkqna] {
    font-size: 20px;
    line-height: 1;
}

.settings-card-title[b-0t958zkqna] {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.settings-card-desc[b-0t958zkqna] {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.6;
    margin: 0;
}

.settings-note[b-0t958zkqna] {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.55;
}

.settings-profile-row[b-0t958zkqna] {
    display: flex;
    align-items: center;
    gap: 14px;
}

.settings-avatar[b-0t958zkqna] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--card-border);
    flex-shrink: 0;
}

.settings-profile-name[b-0t958zkqna] {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.settings-profile-email[b-0t958zkqna] {
    font-size: 13px;
    color: var(--text-2);
    margin-top: 2px;
}

.settings-card-actions[b-0t958zkqna] {
    margin-top: 4px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.settings-footer-note[b-0t958zkqna] {
    margin-top: 40px;
    font-size: 13px;
    color: var(--text-3);
    text-align: center;
}

/* ── AI Settings fields ──────────────────────────────────────────────── */
.settings-field[b-0t958zkqna] {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.settings-label[b-0t958zkqna] {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.settings-input[b-0t958zkqna] {
    padding: 8px 12px;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    background: var(--input-bg, var(--card-bg));
    color: var(--text);
    font-size: 14px;
    outline: none;
    transition: border-color 0.15s;
    width: 100%;
    box-sizing: border-box;
}

.settings-input:focus[b-0t958zkqna] {
    border-color: var(--accent, #335AFF);
}

.settings-field-hint[b-0t958zkqna] {
    font-size: 12px;
    color: var(--text-3);
    line-height: 1.5;
}

.settings-key-status[b-0t958zkqna] {
    font-size: 13px;
    font-weight: 600;
    color: #2e7d32;
    padding: 6px 10px;
    background: rgba(46, 125, 50, 0.08);
    border-radius: 6px;
}

.settings-btn-danger[b-0t958zkqna] {
    color: #c0392b;
    border-color: rgba(192, 57, 43, 0.3);
}

.settings-btn-danger:hover[b-0t958zkqna] {
    background: rgba(192, 57, 43, 0.06);
}

.settings-key-status--off[b-0t958zkqna] {
    color: #888;
    background: rgba(0,0,0,0.04);
}

.settings-field--disabled[b-0t958zkqna] {
    opacity: 0.45;
    pointer-events: none;
}

/* Toggle switch */
.settings-toggle[b-0t958zkqna] {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.settings-toggle input[type="checkbox"][b-0t958zkqna] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.settings-toggle-track[b-0t958zkqna] {
    position: relative;
    width: 40px;
    height: 22px;
    background: rgba(0,0,0,0.15);
    border-radius: 11px;
    flex-shrink: 0;
    transition: background 0.2s;
}

.settings-toggle-track[b-0t958zkqna]::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.settings-toggle input:checked + .settings-toggle-track[b-0t958zkqna] {
    background: var(--accent, #335AFF);
}

.settings-toggle input:checked + .settings-toggle-track[b-0t958zkqna]::after {
    transform: translateX(18px);
}

.settings-toggle-label[b-0t958zkqna] {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}
