/* /Layout/MainLayout.razor.rz.scp.css */
:root[b-v8q5m4zhkd] {
    --bg: #ffffff;
    --border: #e5e7eb;
    --text: #111827;
    --muted: #6b7280;
    --primary: #1a73e8;
}

.page[b-v8q5m4zhkd] {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--bg);
    color: var(--text);
}

/* sticky topbar with subtle blur */
.topbar[b-v8q5m4zhkd] {
    grid-column: 1 / -1;
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    height: auto;
}

.topbar-content[b-v8q5m4zhkd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.3rem 1rem;
}

.site-title-link[b-v8q5m4zhkd] {
    color: var(--text);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
}

main[b-v8q5m4zhkd] { min-width: 0; }

/* Align with global .content */
.content[b-v8q5m4zhkd] {
    max-width: 920px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.content h1[b-v8q5m4zhkd] {
    font-size: 2rem;
    margin: 0.5rem 0 1rem;
}

.content h2[b-v8q5m4zhkd] {
    font-size: 1.4rem;
    margin-top: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.3rem;
}

.content p[b-v8q5m4zhkd], .content li[b-v8q5m4zhkd] {
    line-height: 1.8;
    color: #242424;
}

.breadcrumb[b-v8q5m4zhkd] {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0.5rem 0 1rem;
}

.breadcrumb a[b-v8q5m4zhkd] {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb a:hover[b-v8q5m4zhkd] {
    text-decoration: underline;
}

@media (max-width: 920px) {
    .content[b-v8q5m4zhkd] { padding: 1rem; }
}
/* /Layout/NavMenu.razor.rz.scp.css */
[b-d13n4iuesv] .nav-btn {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: transparent;
    color: #80868b;
    border: none;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: none;
    transition: color 0.18s cubic-bezier(.4,0,.2,1), border-bottom 0.18s cubic-bezier(.4,0,.2,1);
    text-decoration: none;
    outline: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

    [b-d13n4iuesv] .nav-btn:hover {
        color: #202124;
        border-bottom: 2px solid #80868b; /* �z�o�[���ɍ��ŉ��� */
        background: transparent;
        text-decoration: none;
    }

    [b-d13n4iuesv] .nav-btn.active {
        color: #174ea6;
        border-bottom: 2px solid #174ea6; /* �A�N�e�B�u���ɐŉ��� */
        text-decoration: none;
    }
