/* /Layout/AppHeader.razor.rz.scp.css */
.app-header[b-vr381ww4kd] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    height: var(--header-height);
    padding: 0 var(--space-3);
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    z-index: var(--z-header);
    flex: 0 0 auto;
}

.app-header__left[b-vr381ww4kd] {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex: 0 0 auto;
}

.app-header__menu[b-vr381ww4kd] {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
}

.app-header__right[b-vr381ww4kd] {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    flex: 0 0 auto;
}

/* --- Logo (placeholder) --- */
.app-header__logo[b-vr381ww4kd] {
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0 var(--space-2);
}

.app-header__logo-img[b-vr381ww4kd] {
    height: calc(var(--header-height) - 0.5rem);
    width: auto;
    display: block;
    object-fit: contain;
}

/* --- Hamburger (mobil) --- */
.app-header__hamburger[b-vr381ww4kd] {
    display: none;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border-radius: var(--radius-md);
    color: var(--color-text);
}

.app-header__hamburger:hover[b-vr381ww4kd] {
    background: var(--color-surface-alt);
}

.app-header__hamburger-bar[b-vr381ww4kd] {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
}

/* --- Drawer (mobil) --- */
.app-drawer-backdrop[b-vr381ww4kd] {
    position: fixed;
    inset: 0;
    background: var(--color-overlay);
    z-index: var(--z-drawer);
}

.app-drawer[b-vr381ww4kd] {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--drawer-width);
    max-width: 85vw;
    background: var(--color-surface);
    border-right: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    z-index: calc(var(--z-drawer) + 1);
    display: flex;
    flex-direction: column;
    padding: var(--space-2);
    overflow-y: auto;
    animation: bbnk-drawer-in-b-vr381ww4kd calc(var(--motion-duration-base) * var(--motion-enabled, 1)) var(--motion-easing);
}

@keyframes bbnk-drawer-in-b-vr381ww4kd {
    from { transform: translateX(-100%); }
    to   { transform: translateX(0); }
}

.app-drawer__header[b-vr381ww4kd] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--density-control-height);
    padding: 0 var(--space-2);
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.app-drawer__close[b-vr381ww4kd] {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: var(--radius-md);
    color: var(--color-text);
}

.app-drawer__close:hover[b-vr381ww4kd] {
    background: var(--color-surface-alt);
}

/* --- Mobil breakpoint --- */
@media (max-width: 768px) {
    .app-header__hamburger[b-vr381ww4kd] {
        display: inline-flex;
    }
    .app-header__menu[b-vr381ww4kd] {
        display: none;
    }
}
/* /Layout/Components/AppMenu.razor.rz.scp.css */
/* Stiller menu.css (global) dosyasına taşındı. Bu dosya boş bırakıldı. */
/* /Layout/Components/TabPages.razor.rz.scp.css */
.tab-pages[b-riz97y45et] {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

.tab-pages__header[b-riz97y45et] {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-surface);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    /* Mobilde scrollbar görsel olarak ince */
    scrollbar-width: thin;
}

.tab-pages__tab[b-riz97y45et] {
    flex: 0 0 auto;
    scroll-snap-align: start;
    height: var(--density-control-height);
    padding: 0 var(--space-4);
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color calc(var(--motion-duration-fast) * var(--motion-enabled, 1)) var(--motion-easing),
                border-color calc(var(--motion-duration-fast) * var(--motion-enabled, 1)) var(--motion-easing);
}

.tab-pages__tab:hover[b-riz97y45et] {
    color: var(--color-text);
}

.tab-pages__tab.is-active[b-riz97y45et] {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.tab-pages__body[b-riz97y45et] {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    padding: var(--space-4);
}

[b-riz97y45et] .tab-page {
    /* her bir TabPage'in kendi içerik kutusu */
}
/* /Layout/Components/ThemeSwitcher.razor.rz.scp.css */
.theme-switcher[b-5qxde3wv7l] {
    position: relative;
}

.theme-switcher__trigger[b-5qxde3wv7l] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    height: var(--density-control-height);
    padding: 0 var(--density-padding-x);
    border-radius: var(--radius-md);
    color: var(--color-text);
    transition: background-color calc(var(--motion-duration-fast) * var(--motion-enabled, 1)) var(--motion-easing);
}

.theme-switcher__trigger:hover[b-5qxde3wv7l] {
    background: var(--color-surface-alt);
}

.theme-switcher__label[b-5qxde3wv7l] {
    font-size: var(--font-size-sm);
}

.theme-switcher__chevron[b-5qxde3wv7l] {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

.theme-switcher__dropdown[b-5qxde3wv7l] {
    position: absolute;
    top: calc(100% + var(--space-1));
    right: 0;
    min-width: 12rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: var(--space-1);
    z-index: var(--z-dropdown);
}

.theme-switcher__option[b-5qxde3wv7l] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    width: 100%;
    height: var(--density-control-height);
    padding: 0 var(--density-padding-x);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    text-align: left;
}

.theme-switcher__option:hover[b-5qxde3wv7l] {
    background: var(--color-surface-alt);
}

.theme-switcher__option.is-active[b-5qxde3wv7l] {
    color: var(--color-accent);
}

.theme-switcher__option-label[b-5qxde3wv7l] {
    flex: 1;
    font-size: var(--font-size-sm);
}

.theme-switcher__check[b-5qxde3wv7l] {
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .theme-switcher__label[b-5qxde3wv7l] {
        display: none;
    }
}
/* /Layout/Components/UserPanel.razor.rz.scp.css */
.user-panel[b-9v1wbblqtg] {
    position: relative;
}

.user-panel__trigger[b-9v1wbblqtg] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    height: var(--density-control-height);
    padding: 0 var(--density-padding-x);
    border-radius: var(--radius-md);
    color: var(--color-text);
    transition: background-color calc(var(--motion-duration-fast) * var(--motion-enabled, 1)) var(--motion-easing);
}

.user-panel__trigger:hover[b-9v1wbblqtg] {
    background: var(--color-surface-alt);
}

.user-panel__avatar[b-9v1wbblqtg] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: var(--radius-pill);
    background: var(--color-accent);
    color: var(--color-accent-contrast);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.user-panel__avatar--sm[b-9v1wbblqtg] {
    width: 1.5rem;
    height: 1.5rem;
}

.user-panel__name[b-9v1wbblqtg] {
    font-size: var(--font-size-sm);
    max-width: 10rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-panel__chevron[b-9v1wbblqtg] {
    color: var(--color-text-muted);
    font-size: var(--font-size-xs);
}

.user-panel__dropdown[b-9v1wbblqtg] {
    position: absolute;
    top: calc(100% + var(--space-1));
    right: 0;
    min-width: 16rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: var(--space-1);
    z-index: var(--z-dropdown);
    display: flex;
    flex-direction: column;
}

.user-panel__action[b-9v1wbblqtg],
.user-panel__user[b-9v1wbblqtg] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    height: var(--density-control-height);
    padding: 0 var(--density-padding-x);
    border-radius: var(--radius-sm);
    text-align: left;
    color: var(--color-text);
}

.user-panel__action:hover:not(:disabled)[b-9v1wbblqtg],
.user-panel__user:hover:not(:disabled)[b-9v1wbblqtg] {
    background: var(--color-surface-alt);
}

.user-panel__user.is-active-elsewhere[b-9v1wbblqtg] {
    opacity: 0.55;
    cursor: not-allowed;
}

.user-panel__separator[b-9v1wbblqtg] {
    height: 1px;
    background: var(--color-border);
    margin: var(--space-1) var(--space-2);
}

.user-panel__section-title[b-9v1wbblqtg] {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: var(--space-1) var(--density-padding-x);
}

.user-panel__empty[b-9v1wbblqtg] {
    padding: var(--space-1) var(--density-padding-x);
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

.user-panel__user-name[b-9v1wbblqtg] {
    flex: 1;
    font-size: var(--font-size-sm);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-panel__badge[b-9v1wbblqtg] {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .user-panel__name[b-9v1wbblqtg] {
        display: none;
    }
    .user-panel__dropdown[b-9v1wbblqtg] {
        min-width: 14rem;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.app-shell[b-pez9jpaya6] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
    background: var(--color-bg);
    color: var(--color-text);
}

.app-body[b-pez9jpaya6] {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}
