/* /Components/BasicDataSelector.razor.rz.scp.css */
/* ── Segmented tab bar ──────────────────────────────────────────────────── */

.bds-tab-bar[b-jfyu6gbxsr] {
    display: flex;
    gap: 2px;
    padding: 3px;
    background: #edeae5;
    border-radius: 10px;
    margin-bottom: 0.875rem;
}

.bds-tab[b-jfyu6gbxsr] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 10px;
    border: none;
    background: transparent;
    border-radius: 7px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #6b7165;
    cursor: pointer;
    transition: background 0.14s, color 0.14s;
    white-space: nowrap;
    line-height: 1.3;
}

.bds-tab:hover:not(.bds-tab--active)[b-jfyu6gbxsr] {
    background: rgba(59, 81, 69, 0.09);
    color: #3B5145;
}

.bds-tab--active[b-jfyu6gbxsr] {
    background: #3B5145;
    color: #ffffff;
    font-weight: 600;
}

.bds-tab-count[b-jfyu6gbxsr] {
    display: inline-flex;
    align-items: center;
    font-size: 0.675rem;
    padding: 1px 5px;
    border-radius: 10px;
    background: rgba(59, 81, 69, 0.12);
    color: #6b7165;
    font-weight: 500;
    line-height: 1.5;
    transition: background 0.14s, color 0.14s;
}

.bds-tab--active .bds-tab-count[b-jfyu6gbxsr] {
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.85);
}

.bds-tab-count--lit[b-jfyu6gbxsr] {
    background: #F2916D !important;
    color: #fff !important;
}

/* ── Body container ─────────────────────────────────────────────────────── */

.bds-body[b-jfyu6gbxsr] {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Select-all bar ─────────────────────────────────────────────────────── */

.bds-select-all[b-jfyu6gbxsr] {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 2px 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #3B5145;
    cursor: pointer;
    user-select: none;
}

.bds-select-all input[type="checkbox"][b-jfyu6gbxsr] {
    accent-color: #3B5145;
    width: 13px;
    height: 13px;
    cursor: pointer;
    flex-shrink: 0;
}

.bds-select-all-count[b-jfyu6gbxsr] {
    font-weight: 400;
    color: #8a9189;
}

/* ── Scrollable list wrapper ─────────────────────────────────────────────── */

.bds-list[b-jfyu6gbxsr] {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid rgba(59, 81, 69, 0.18);
    border-radius: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(59, 81, 69, 0.25) transparent;
}

/* ── Table ──────────────────────────────────────────────────────────────── */

.bds-table[b-jfyu6gbxsr] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}

.bds-table thead th[b-jfyu6gbxsr] {
    position: sticky;
    top: 0;
    background: #f5f3ef;
    padding: 6px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #8a9189;
    border-bottom: 1px solid rgba(59, 81, 69, 0.12);
    white-space: nowrap;
}

.bds-table tbody tr[b-jfyu6gbxsr] {
    border-bottom: 1px solid rgba(59, 81, 69, 0.07);
    transition: background 0.1s;
    cursor: pointer;
}

.bds-table tbody tr:last-child[b-jfyu6gbxsr] {
    border-bottom: none;
}

.bds-table tbody tr:hover[b-jfyu6gbxsr] {
    background: rgba(59, 81, 69, 0.05);
}

.bds-table td[b-jfyu6gbxsr] {
    padding: 7px 10px;
    vertical-align: middle;
}

/* ── Row states ─────────────────────────────────────────────────────────── */

.bds-row--sel[b-jfyu6gbxsr] {
    background: rgba(242, 145, 109, 0.07);
    box-shadow: inset 2px 0 0 #F2916D;
}

.bds-row--sel:hover[b-jfyu6gbxsr] {
    background: rgba(242, 145, 109, 0.12) !important;
}

.bds-row--busy[b-jfyu6gbxsr] {
    pointer-events: none;
    opacity: 0.55;
}

/* ── Column helpers ─────────────────────────────────────────────────────── */

.col-chk[b-jfyu6gbxsr] {
    width: 30px;
    padding-right: 4px !important;
}

.col-right[b-jfyu6gbxsr] {
    text-align: right;
}

.col-center[b-jfyu6gbxsr] {
    width: 4rem;
    text-align: center;
}

.bds-meta[b-jfyu6gbxsr] {
    color: #9ca3af;
}

.bds-check-mark[b-jfyu6gbxsr] {
    color: #3B5145;
    font-size: 0.9rem;
}

/* ── Checkbox accent ────────────────────────────────────────────────────── */

.bds-table input[type="checkbox"][b-jfyu6gbxsr] {
    accent-color: #3B5145;
    width: 13px;
    height: 13px;
    cursor: pointer;
}

/* ── Sub-tab bar (category types) ───────────────────────────────────────── */

.bds-sub-bar[b-jfyu6gbxsr] {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(59, 81, 69, 0.15);
}

.bds-sub-tab[b-jfyu6gbxsr] {
    padding: 4px 11px;
    border: none;
    background: transparent;
    font-size: 0.75rem;
    font-weight: 500;
    color: #8a9189;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    border-radius: 4px 4px 0 0;
    transition: color 0.12s, border-color 0.12s;
}

.bds-sub-tab:hover:not(.bds-sub-tab--active)[b-jfyu6gbxsr] {
    color: #3B5145;
}

.bds-sub-tab--active[b-jfyu6gbxsr] {
    color: #3B5145;
    font-weight: 700;
    border-bottom-color: #3B5145;
}

.bds-sub-badge[b-jfyu6gbxsr] {
    display: inline-flex;
    align-items: center;
    font-size: 0.64rem;
    padding: 0 4px;
    border-radius: 8px;
    background: #F2916D;
    color: #fff;
    font-weight: 700;
    margin-left: 3px;
    line-height: 1.6;
}

/* ── Checklist (phases, non-Annotation categories) ───────────────────────── */

.bds-checklist[b-jfyu6gbxsr] {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid rgba(59, 81, 69, 0.18);
    border-radius: 8px;
    padding: 4px 6px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    scrollbar-width: thin;
    scrollbar-color: rgba(59, 81, 69, 0.25) transparent;
}

.bds-check-item[b-jfyu6gbxsr] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 8px;
    border-radius: 6px;
    font-size: 0.8125rem;
    color: #212529;
    cursor: pointer;
    transition: background 0.1s;
    user-select: none;
}

.bds-check-item:hover[b-jfyu6gbxsr] {
    background: rgba(59, 81, 69, 0.06);
}

.bds-check-item input[type="checkbox"][b-jfyu6gbxsr] {
    accent-color: #3B5145;
    width: 13px;
    height: 13px;
    cursor: pointer;
    flex-shrink: 0;
}

.bds-check-item--busy[b-jfyu6gbxsr] {
    pointer-events: none;
    opacity: 0.55;
}

/* ── Empty state ────────────────────────────────────────────────────────── */

.bds-empty[b-jfyu6gbxsr] {
    padding: 1.75rem 1rem;
    text-align: center;
    font-size: 0.825rem;
    color: #9ca3af;
    font-style: italic;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.full-page[b-033wl8hls0] {
    min-height: 100vh;
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-bl7puasopu] {
    background-color: var(--color-nav-toggler-bg);
}

.top-row[b-bl7puasopu] {
    min-height: 3.5rem;
    background-color: var(--color-nav-bg);
}

.navbar-brand[b-bl7puasopu] {
    font-size: 1.1rem;
}

.bi[b-bl7puasopu] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-bl7puasopu] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-bl7puasopu] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-bl7puasopu] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-bl7puasopu] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-bl7puasopu] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-bl7puasopu] {
        padding-bottom: 1rem;
    }

    .nav-item[b-bl7puasopu]  a {
        color: var(--color-nav-link);
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-bl7puasopu]  a.active {
    background-color: var(--color-nav-link-active-bg);
    color: var(--color-nav-link-active);
}

.nav-item[b-bl7puasopu]  a:hover {
    background-color: var(--color-nav-link-hover-bg);
    color: var(--color-nav-link-hover);
}

@media (min-width: 641px) {
    .navbar-toggler[b-bl7puasopu] {
        display: none;
    }

    .collapse[b-bl7puasopu] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-bl7puasopu] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Soon.razor.rz.scp.css */
/* ── Page container ─────────────────────────────────────────────────────── */

.soon-page[b-8h61e8jdoo] {
    width: 100%;
    align-self: flex-start;
}

/* ── Hero (screen 1) ────────────────────────────────────────────────────── */

.soon-hero[b-8h61e8jdoo] {
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem 5rem;
    text-align: center;
    background: radial-gradient(ellipse 700px 500px at center 44%,
        rgba(255, 255, 255, 0.84) 0%,
        rgba(255, 255, 255, 0) 100%);
}

.soon-hero-inner[b-8h61e8jdoo] {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 520px;
    width: 100%;
}

/* ── Badge ─────────────────────────────────────────────────────────────── */

.soon-badge[b-8h61e8jdoo] {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 14px;
    border-radius: 20px;
    background: #F2916D;
    color: #fff;
    margin-bottom: 1.5rem;
    white-space: nowrap;
    transition: filter 0.28s ease, opacity 0.28s ease;
    animation: soon-fade-up-b-8h61e8jdoo 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.soon-badge--blurred[b-8h61e8jdoo] {
    filter: blur(5px);
    opacity: 0;
}

/* ── Title ─────────────────────────────────────────────────────────────── */

.soon-title[b-8h61e8jdoo] {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #3B5145;
    line-height: 1;
    margin: 0 0 1.1rem;
    animation: soon-fade-up-b-8h61e8jdoo 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

/* ── Tagline ───────────────────────────────────────────────────────────── */

.soon-tagline[b-8h61e8jdoo] {
    font-size: clamp(1rem, 2.8vw, 1.3rem);
    font-weight: 500;
    color: #3B5145;
    line-height: 1.5;
    margin: 0 0 1rem;
    animation: soon-fade-up-b-8h61e8jdoo 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.16s both;
}

/* ── Description ───────────────────────────────────────────────────────── */

.soon-desc[b-8h61e8jdoo] {
    font-size: 0.9375rem;
    color: #555f58;
    line-height: 1.65;
    margin: 0 0 2rem;
    animation: soon-fade-up-b-8h61e8jdoo 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both;
}

/* ── Email form ────────────────────────────────────────────────────────── */

.soon-form[b-8h61e8jdoo] {
    width: 100%;
    animation: soon-fade-up-b-8h61e8jdoo 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
}

.soon-form-label[b-8h61e8jdoo] {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #8a9189;
    margin-bottom: 0.6rem;
}

.soon-form-row[b-8h61e8jdoo] {
    display: flex;
    gap: 8px;
}

.soon-email-input[b-8h61e8jdoo] {
    flex: 1;
    min-width: 0;
    padding: 10px 14px;
    font-size: 0.9rem;
    border: 1.5px solid rgba(59, 81, 69, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #212529;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.soon-email-input[b-8h61e8jdoo]::placeholder { color: #b0b8b2; }

.soon-email-input:focus[b-8h61e8jdoo] {
    border-color: #3B5145;
    box-shadow: 0 0 0 3px rgba(59, 81, 69, 0.12);
}

.soon-email-input:disabled[b-8h61e8jdoo] { opacity: 0.55; }

.soon-submit-btn[b-8h61e8jdoo] {
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: #3B5145;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.15s, transform 0.12s;
}

.soon-submit-btn:hover:not(:disabled)[b-8h61e8jdoo] { background: #243A2E; }
.soon-submit-btn:active:not(:disabled)[b-8h61e8jdoo] { transform: scale(0.96); }
.soon-submit-btn:disabled[b-8h61e8jdoo] { opacity: 0.42; cursor: default; }

/* ── Fine print ────────────────────────────────────────────────────────── */

.soon-fine-print[b-8h61e8jdoo] {
    margin: 0.55rem 0 0;
    font-size: 0.74rem;
    color: #a8b0ab;
    text-align: left;
    line-height: 1.4;
}

/* ── Form error ────────────────────────────────────────────────────────── */

.soon-form-error[b-8h61e8jdoo] {
    margin: 0.45rem 0 0;
    font-size: 0.8rem;
    color: #D92938;
    text-align: left;
}

.soon-form-error-detail[b-8h61e8jdoo] {
    font-size: 0.72rem;
    opacity: 0.8;
    word-break: break-all;
}

/* ── Spinner ───────────────────────────────────────────────────────────── */

.soon-spinner[b-8h61e8jdoo] {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: soon-spin-b-8h61e8jdoo 0.7s linear infinite;
}

@keyframes soon-spin-b-8h61e8jdoo {
    to { transform: rotate(360deg); }
}

/* ── Success ───────────────────────────────────────────────────────────── */

.soon-success[b-8h61e8jdoo] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #3B5145;
    padding: 12px 20px;
    border: 1.5px solid rgba(59, 81, 69, 0.3);
    border-radius: 8px;
    background: rgba(59, 81, 69, 0.07);
    animation: soon-fade-up-b-8h61e8jdoo 0.4s ease both;
}

/* ── Scroll hint ───────────────────────────────────────────────────────── */

.soon-scroll-hint[b-8h61e8jdoo] {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(59, 81, 69, 0.5);
    cursor: pointer;
    border-radius: 50%;
    padding: 4px;
    transition: color 0.15s;
    animation: soon-bounce-b-8h61e8jdoo 2.2s ease-in-out infinite;
}

.soon-scroll-hint:hover[b-8h61e8jdoo] {
    color: #3B5145;
}

@keyframes soon-bounce-b-8h61e8jdoo {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── Lower section (screen 2) ──────────────────────────────────────────── */

.soon-lower[b-8h61e8jdoo] {
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    background: radial-gradient(ellipse 900px 600px at center 30%,
        rgba(255, 255, 255, 0.80) 0%,
        rgba(255, 255, 255, 0) 100%);
}

/* ── Features area ─────────────────────────────────────────────────────── */

.soon-features[b-8h61e8jdoo] {
    padding: 3.5rem 1.5rem 2rem;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    flex: 1;
}

.soon-section-label[b-8h61e8jdoo] {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8a9189;
    margin: 0 0 1.25rem;
}

/* ── Card grid ─────────────────────────────────────────────────────────── */

.soon-grid[b-8h61e8jdoo] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
}

@media (max-width: 600px) {
    .soon-grid[b-8h61e8jdoo] { grid-template-columns: 1fr; }
}

/* ── Cards ─────────────────────────────────────────────────────────────── */

.soon-card[b-8h61e8jdoo] {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(59, 81, 69, 0.14);
    border-radius: 12px;
    padding: 1.35rem 1.4rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 4px 0px rgba(59, 81, 69, 0);
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.38s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.38s ease;
    animation: soon-fade-up-b-8h61e8jdoo 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.soon-card:nth-child(1)[b-8h61e8jdoo] { animation-delay: 0.05s; }
.soon-card:nth-child(2)[b-8h61e8jdoo] { animation-delay: 0.11s; }
.soon-card:nth-child(3)[b-8h61e8jdoo] { animation-delay: 0.17s; }
.soon-card:nth-child(4)[b-8h61e8jdoo] { animation-delay: 0.23s; }
.soon-card:nth-child(5)[b-8h61e8jdoo] { animation-delay: 0.29s; }
.soon-card:nth-child(6)[b-8h61e8jdoo] { animation-delay: 0.35s; }

.soon-card:hover[b-8h61e8jdoo] {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(59, 81, 69, 0.11);
    border-color: rgba(59, 81, 69, 0.28);
}

.soon-card-icon[b-8h61e8jdoo] {
    color: #F2916D;
    line-height: 0;
    margin-bottom: 0.1rem;
}

.soon-card-title[b-8h61e8jdoo] {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
    letter-spacing: -0.01em;
}

.soon-card-desc[b-8h61e8jdoo] {
    font-size: 0.8375rem;
    color: #6b7470;
    line-height: 1.6;
    margin: 0;
}

/* ── Footer ────────────────────────────────────────────────────────────── */

.soon-footer[b-8h61e8jdoo] {
    padding: 1.25rem 2rem 2rem;
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.soon-footer-contact[b-8h61e8jdoo] {
    font-size: 0.85rem;
    color: #6b7470;
}

.soon-footer-email[b-8h61e8jdoo] {
    color: #3B5145;
    text-decoration: none;
    font-weight: 500;
}

.soon-footer-email:hover[b-8h61e8jdoo] { text-decoration: underline; }

.soon-footer-nav[b-8h61e8jdoo] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

.soon-footer-link[b-8h61e8jdoo] {
    color: #3B5145;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.15s;
}

.soon-footer-link:hover[b-8h61e8jdoo] { opacity: 0.7; }

/* ── Shared entrance animation ─────────────────────────────────────────── */

@keyframes soon-fade-up-b-8h61e8jdoo {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
