@import '_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css';
@import '_content/PSC.Blazor.Components.Chartjs/PSC.Blazor.Components.Chartjs.bundle.scp.css';
@import '_content/Z.Blazor.Diagrams/Z.Blazor.Diagrams.ezdqu7jd9f.bundle.scp.css';

/* /Components/Pages/Account/Login.razor.rz.scp.css */
/* v4 SciFi "terminal" login teması (Pages/LoginThemes/SciFiLoginTheme.razor.css'ten birebir).
   Sabit renkler (neon cyan vb.) temaya özgü ve kasıtlı — FluentUI token'ları KULLANILMAZ (bu tema
   kendi paletini taşır). InputText'in gerçek <input>'u InputText bileşeninin markup'ında üretildiği
   için sayfa scope'u almaz → .terminal-input'a ::deep ile erişiyoruz (v4 ile aynı). */

@keyframes scifi-pulse-b-fv0sls98eo {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), 0 0 40px rgba(0, 255, 255, 0.1); }
    50% { box-shadow: 0 0 30px rgba(0, 255, 255, 0.5), 0 0 60px rgba(0, 255, 255, 0.2); }
}

@keyframes scifi-scanline-b-fv0sls98eo {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

@keyframes scifi-flicker-b-fv0sls98eo {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    97% { opacity: 0.9; }
}

@keyframes scifi-glitch-b-fv0sls98eo {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes scifi-dot-pulse-b-fv0sls98eo {
    0%, 100% { box-shadow: 0 0 10px #0f0; }
    50% { box-shadow: 0 0 14px #0f0, 0 0 20px #0f0; }
}

.sci-fi-bg[b-fv0sls98eo] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 50%, rgba(255, 0, 128, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 100% 50%, rgba(0, 128, 255, 0.1) 0%, transparent 40%),
        linear-gradient(180deg, #0a0a0f 0%, #0d1117 50%, #0a0a0f 100%);
    overflow: hidden;
    z-index: -1;
}

.sci-fi-bg[b-fv0sls98eo]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.03) 2px,
        rgba(0, 255, 255, 0.03) 4px
    );
    pointer-events: none;
}

.sci-fi-bg[b-fv0sls98eo]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(0,255,255,0.05) 0%, transparent 100%);
    animation: scifi-scanline-b-fv0sls98eo 8s linear infinite;
    pointer-events: none;
}

.login-terminal[b-fv0sls98eo] {
    width: 400px;
    max-width: 100%;
    padding: 2rem;
    background: rgba(10, 15, 25, 0.9);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 4px;
    animation: scifi-pulse-b-fv0sls98eo 3s ease-in-out infinite, scifi-flicker-b-fv0sls98eo 10s linear infinite;
    position: relative;
}

.login-terminal[b-fv0sls98eo]::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0ff, transparent);
}

.terminal-header[b-fv0sls98eo] {
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Courier New', monospace;
}

.terminal-header h3[b-fv0sls98eo] {
    color: #0ff;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.terminal-header p[b-fv0sls98eo] {
    color: rgba(0, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.field-stack[b-fv0sls98eo] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.field-stack[b-fv0sls98eo]  .terminal-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 20, 30, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 2px;
    color: #0ff;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.field-stack[b-fv0sls98eo]  .terminal-input:focus {
    border-color: #0ff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.1);
}

.field-stack[b-fv0sls98eo]  .terminal-input::placeholder {
    color: rgba(0, 255, 255, 0.3);
}

.terminal-label[b-fv0sls98eo] {
    display: block;
    color: rgba(0, 255, 255, 0.7);
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

/* Doğrulama / hata satırları — terminal estetiğinde (v4 ToastService yerine inline). */
.field-stack[b-fv0sls98eo]  .terminal-validation {
    display: block;
    margin-top: 4px;
    color: #ff5277;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.terminal-error[b-fv0sls98eo] {
    padding: 10px 12px;
    border: 1px solid rgba(255, 82, 119, 0.5);
    background: rgba(255, 0, 64, 0.08);
    color: #ff5277;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border-radius: 2px;
}

.terminal-btn[b-fv0sls98eo] {
    width: 100%;
    padding: 14px;
    background: linear-gradient(180deg, rgba(0, 255, 255, 0.2) 0%, rgba(0, 255, 255, 0.1) 100%);
    border: 1px solid #0ff;
    border-radius: 2px;
    color: #0ff;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.terminal-btn:hover:not(:disabled)[b-fv0sls98eo] {
    background: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    animation: scifi-glitch-b-fv0sls98eo 0.3s ease;
}

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

.terminal-footer[b-fv0sls98eo] {
    margin-top: 2rem;
    text-align: center;
    font-family: 'Courier New', monospace;
    color: rgba(0, 255, 255, 0.4);
    font-size: 0.65rem;
    letter-spacing: 1px;
}

.terminal-footer-warning[b-fv0sls98eo] {
    margin-top: 4px;
}

.status-line[b-fv0sls98eo] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: rgba(0, 255, 255, 0.5);
}

.status-dot[b-fv0sls98eo] {
    width: 6px;
    height: 6px;
    background: #0f0;
    border-radius: 50%;
    box-shadow: 0 0 10px #0f0;
    animation: scifi-dot-pulse-b-fv0sls98eo 1s ease-in-out infinite;
}
/* /Components/Pages/Admin/BarcodeCapturesPage.razor.rz.scp.css */
/* BarcodeCapturesPage scoped styles — GEÇİCİ pilot (Medicine#238 / #771).
   Elements authored in the .razor MARKUP so the b-* scope attribute is stamped (§9 trap 2).
   Colors use FluentUI design tokens (var(--color…), same approach as CommentPage.razor.css)
   so the cards stay theme-adaptive. */

.stat-row[b-1ze3w9nopl] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.stat-card[b-1ze3w9nopl] {
    border: 1px solid var(--colorNeutralStroke2);
    border-radius: 8px;
    padding: 12px 16px;
    min-width: 260px;
    flex: 1 1 260px;
    max-height: 320px;
    overflow: auto;
}

.stat-title[b-1ze3w9nopl] {
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-empty[b-1ze3w9nopl] {
    color: var(--colorNeutralForeground3);
}

.stat-big[b-1ze3w9nopl] {
    font-size: 2rem;
    font-weight: 600;
}

.stat-sub[b-1ze3w9nopl] {
    color: var(--colorNeutralForeground3);
    font-size: 0.85rem;
}

.stat-table[b-1ze3w9nopl] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.stat-table th[b-1ze3w9nopl] {
    text-align: left;
    border-bottom: 1px solid var(--colorNeutralStroke2);
    padding: 2px 8px 2px 0;
}

.stat-table td[b-1ze3w9nopl] {
    padding: 2px 8px 2px 0;
    border-bottom: 1px solid var(--colorNeutralStroke3);
}

/* HID instance paths are long — clip with ellipsis, full value in the title tooltip. */
.stat-device[b-1ze3w9nopl] {
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* /Components/Pages/Admin/Payment/PaymentDetailPage.razor.rz.scp.css */
/* Scoped to markup-authored elements only (Blazor stamps the scope attribute on .razor markup —
   never on DOM built in a code-behind RenderFragment). Everything styled here is in the markup. */

.detail-table[b-3yxqwk0f08] {
    width: 100%;
    border-collapse: collapse;
}

.detail-table th[b-3yxqwk0f08] {
    width: 200px;
    text-align: left;
    vertical-align: top;
    padding: 6px 12px 6px 0;
    font-weight: 600;
    color: var(--colorNeutralForeground3);
}

.detail-table td[b-3yxqwk0f08] {
    padding: 6px 0;
    vertical-align: top;
}

.mono[b-3yxqwk0f08] {
    font-family: var(--fontFamilyMonospace);
    font-size: var(--fontSizeBase200);
}

/* Hash strings and signed payloads are long and have no spaces — without this they push the card
   sideways instead of wrapping, and the page scrolls horizontally. */
.wrap[b-3yxqwk0f08] {
    overflow-wrap: anywhere;
    white-space: pre-wrap;
    margin: 0;
}

details > summary[b-3yxqwk0f08] {
    cursor: pointer;
    user-select: none;
}
/* /Components/Pages/Admin/ProductsPage.razor.rz.scp.css */
/* Product list page (#0052) — scoped styles.
   These target elements authored in ProductsPage.razor MARKUP (the <img> and the name <span>),
   so Blazor CSS isolation stamps the scope attribute and these rules apply (§9 trap 2 only bites
   DOM built in code-behind). The TALLER ROW height itself lives in app.css `.data-grid-images`,
   not here, because that has to reach the grid's internally-generated cell DOM, which gets no
   scope attribute (§9 trap 2). */

/* ~60px square thumbnail; object-fit keeps aspect ratio, rounded corners for a tidy look. */
.product-thumb[b-8nad1t64ts] {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

/* Clamp long product names to two lines so tall image rows stay tidy. */
.product-name[b-8nad1t64ts] {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}
/* /Components/Pages/Customer/CustomerVpnPanel.razor.rz.scp.css */
/* CustomerVpnPanel scoped styles (A7). Every COLOR references a FluentUI v5 design token — the
   same CSS variables behind the typed SystemColors/StylesVariables constants — so the panel is
   theme-adaptive (there is no typed-constant channel inside a .razor.css; the var(--…) names
   below are 1:1 the constants' values). All styled elements are authored in
   CustomerVpnPanel.razor MARKUP so the Blazor scope attribute lands on them
   (DESIGN-GUIDELINES §9 — no code-built RenderFragments target these classes). */

.vpn-card[b-cgweddbajh] {
    border: 1px solid var(--colorNeutralStroke2);
    border-radius: var(--borderRadiusLarge);
    background: var(--colorNeutralBackground1);
}

.vpn-card-title[b-cgweddbajh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-weight: var(--fontWeightSemibold);
    font-size: var(--fontSizeBase200);
    color: var(--colorNeutralForeground2);
    padding: 10px 16px;
    border-bottom: 1px solid var(--colorNeutralStroke2);
}

.vpn-card-body[b-cgweddbajh] {
    padding: 12px 16px;
}

.vpn-row[b-cgweddbajh] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--colorNeutralStroke2);
    font-size: var(--fontSizeBase200);
}

.vpn-row:last-child[b-cgweddbajh] {
    border-bottom: none;
}

.vpn-row-label[b-cgweddbajh] {
    width: 130px;
    font-size: var(--fontSizeBase100);
    font-weight: var(--fontWeightSemibold);
    color: var(--colorNeutralForeground4);
    text-transform: uppercase;
    flex-shrink: 0;
}

/* Maskelenebilir kimlik değeri (SSH kullanıcı/şifre satırları). */
.vpn-secret[b-cgweddbajh] {
    flex: 1;
    font-family: var(--fontFamilyMonospace);
    word-break: break-all;
}

/* Kart içi vurgulu alt başlık (ör. "SSH (Sunucu)"). */
.vpn-subhead[b-cgweddbajh] {
    padding: 8px 16px 0;
    font-size: var(--fontSizeBase100);
    font-weight: var(--fontWeightBold);
    color: var(--colorBrandForeground1);
}

.vpn-field-label[b-cgweddbajh] {
    display: block;
    font-size: var(--fontSizeBase200);
    font-weight: var(--fontWeightSemibold);
    margin-bottom: 4px;
}

.vpn-muted[b-cgweddbajh] {
    font-size: var(--fontSizeBase200);
    color: var(--colorNeutralForeground3);
}

.vpn-danger-text[b-cgweddbajh] {
    color: var(--colorStatusDangerForeground1);
}

.vpn-mono[b-cgweddbajh] {
    font-family: var(--fontFamilyMonospace);
}

/* Bilgi/uyarı kutuları (identity yok, yükleme hatası, provizyon hatası, sunucu yok). */
.vpn-alert[b-cgweddbajh] {
    padding: 16px;
    border-radius: var(--borderRadiusLarge);
    font-size: var(--fontSizeBase300);
}

.vpn-alert-warning[b-cgweddbajh] {
    background: var(--colorStatusWarningBackground1);
    border: 1px solid var(--colorStatusWarningBorder1);
    color: var(--colorStatusWarningForeground2);
}

.vpn-alert-danger[b-cgweddbajh] {
    background: var(--colorStatusDangerBackground1);
    border: 1px solid var(--colorStatusDangerBorder1);
    color: var(--colorStatusDangerForeground1);
}

.vpn-alert-neutral[b-cgweddbajh] {
    background: var(--colorNeutralBackground3);
    border: 1px dashed var(--colorNeutralStroke1);
    color: var(--colorNeutralForeground3);
}

/* Basit veri tabloları (süre uzatma geçmişi, cihaz kimlikleri, komut geçmişi). */
.vpn-table[b-cgweddbajh] {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fontSizeBase200);
}

.vpn-table th[b-cgweddbajh] {
    text-align: left;
    padding: 6px 8px;
    border: 1px solid var(--colorNeutralStroke2);
    background: var(--colorNeutralBackground3);
    font-weight: var(--fontWeightSemibold);
}

.vpn-table td[b-cgweddbajh] {
    padding: 6px 8px;
    border: 1px solid var(--colorNeutralStroke2);
    vertical-align: top;
}

/* th/td ile nitelenmiş — .vpn-table th'nin text-align:left'ini (0,1,1) yenebilsin. */
.vpn-table th.vpn-cell-center[b-cgweddbajh],
.vpn-table td.vpn-cell-center[b-cgweddbajh] {
    text-align: center;
}

/* Terminal görünümü (kurulum log'u, konsol çıktısı) — statik koyu zemin her iki temada da korunur
   (BackgroundStatic/ForegroundStaticInverted tema ile DEĞİŞMEYEN token'lardır; kasıtlı). */
.vpn-terminal[b-cgweddbajh] {
    margin: 0;
    padding: 12px 16px;
    background: var(--colorNeutralBackgroundStatic);
    color: var(--colorNeutralForegroundStaticInverted);
    font-family: var(--fontFamilyMonospace);
    font-size: var(--fontSizeBase200);
    max-height: 340px;
    overflow: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

/* SSH konsolu sonuç kutusu. */
.vpn-console-result[b-cgweddbajh] {
    border: 1px solid var(--colorNeutralStroke2);
    border-radius: var(--borderRadiusLarge);
    overflow: hidden;
}

.vpn-console-result-head[b-cgweddbajh] {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 6px 10px;
    background: var(--colorNeutralBackground3);
    font-size: var(--fontSizeBase200);
    font-family: var(--fontFamilyMonospace);
}

.vpn-ok[b-cgweddbajh] {
    color: var(--colorStatusSuccessForeground1);
    font-weight: var(--fontWeightSemibold);
    flex-shrink: 0;
}

.vpn-fail[b-cgweddbajh] {
    color: var(--colorStatusDangerForeground1);
    font-weight: var(--fontWeightSemibold);
    flex-shrink: 0;
}

.vpn-console-cmd[b-cgweddbajh] {
    color: var(--colorNeutralForeground3);
    word-break: break-all;
}

/* Sağlık probu noktaları (#800/#799): SSH / OpenVPN / güç durumu göstergeleri. Renkler token'dır. */
.vpn-dot[b-cgweddbajh] {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.vpn-dot-ok[b-cgweddbajh] {
    background: var(--colorStatusSuccessForeground1);
}

.vpn-dot-bad[b-cgweddbajh] {
    background: var(--colorStatusDangerForeground1);
}

.vpn-dot-unknown[b-cgweddbajh] {
    background: var(--colorNeutralForeground4);
}

.vpn-health-item[b-cgweddbajh] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 14px;
    font-size: var(--fontSizeBase200);
}
/* /Components/Pages/DemoIconsPage.razor.rz.scp.css */
/* DemoIconsPage scoped styles (diary 0098). Layout-only — every COLOR is a FluentUI design token
   applied inline from the code-behind/markup, so the cards stay theme-adaptive. All styled
   elements are authored in DemoIconsPage.razor MARKUP so the scoped attribute lands on them
   (the RenderFragment trap — see DemoPage.razor.cs / DESIGN-GUIDELINES §9). */

.icon-browser-controls[b-cvkbslmuit] {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 16px;
    width: 100%;
}

.icon-browser-search[b-cvkbslmuit] {
    flex: 1 1 260px;
    max-width: 420px;
}

/* Host is intrinsically sized — stretching needs the ::deep rule (Pages/CLAUDE.md, Forms). */
.icon-browser-search[b-cvkbslmuit]  fluent-text-input {
    display: block;
    width: 100%;
}

/* FIXED height: the browse area never resizes with page, match count or icon size, so paging
   causes no layout jump. A page that doesn't fit (48px icons, narrow window) scrolls INSIDE. */
.icon-browser-grid[b-cvkbslmuit] {
    height: 620px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-rows: min-content;
    align-content: start;
    gap: 8px;
    width: 100%;
}

.icon-browser-card[b-cvkbslmuit] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 6px;
    min-width: 0;
}

/* The FluentIcon's svg is component-internal (no page scope attribute) — reach it with ::deep. */
.icon-browser-card[b-cvkbslmuit]  svg {
    flex-shrink: 0;
}

.icon-browser-name[b-cvkbslmuit] {
    font-size: 11px;
    line-height: 1.3;
    word-break: break-all;
    min-width: 0;
    color: var(--colorNeutralForeground2);
}

/* Empty state spans the whole grid and centers inside the fixed-height area. */
.icon-browser-empty[b-cvkbslmuit] {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
}
/* /Components/Pages/DemoPage.razor.rz.scp.css */
/* DemoPage scoped styles (diary 0040). Layout-only — every COLOR is a FluentUI design token
   referenced inline in the markup/code-behind, so the swatches stay theme-adaptive. */

.demo-swatch-grid[b-vehyrf3jxi] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    width: 100%;
}

.demo-swatch[b-vehyrf3jxi] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.demo-swatch-block[b-vehyrf3jxi] {
    height: 56px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.demo-swatch-label[b-vehyrf3jxi] {
    font-size: 11px;
    line-height: 1.3;
    word-break: break-all;
    color: var(--colorNeutralForeground2);
}

.demo-form-grid[b-vehyrf3jxi] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    width: 100%;
}

/* ── Icon finder (section 7) ──
   Layout-only rules; the card border color is a typed token applied inline from the code-behind
   (IconCardStyle) and the label color mirrors .demo-swatch-label. These elements are authored in
   DemoPage.razor MARKUP so the scoped attribute lands on them (the RenderFragment trap). */

.demo-icon-search[b-vehyrf3jxi] {
    width: 100%;
    max-width: 420px;
}

/* Host is intrinsically sized — stretching needs the ::deep rule (Pages/CLAUDE.md, Forms). */
.demo-icon-search[b-vehyrf3jxi]  fluent-text-input {
    display: block;
    width: 100%;
}

.demo-icon-grid[b-vehyrf3jxi] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
    width: 100%;
}

.demo-icon-card[b-vehyrf3jxi] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 6px;
    min-width: 0;
}

/* The FluentIcon's svg is component-internal (no page scope attribute) — reach it with ::deep. */
.demo-icon-card[b-vehyrf3jxi]  svg {
    flex-shrink: 0;
}

.demo-icon-name[b-vehyrf3jxi] {
    font-size: 11px;
    line-height: 1.3;
    word-break: break-all;
    min-width: 0;
    color: var(--colorNeutralForeground2);
}
/* /Components/Pages/Relay/RelayDetailPage.razor.rz.scp.css */
/* Test print log dialog — LAYOUT only. Colors come from typed token constants
   (SystemColors.*) inline in the markup per the styling rules (CLAUDE.md /
   DESIGN-GUIDELINES §9); a hand-typed var(--…) here would fail silently.
   All styled elements are authored in RelayDetailPage.razor markup, so they
   carry the Blazor scope attribute and these rules apply (scoped-CSS trap 2). */

/* Scrolls independently so the dialog header (title + Kopyala/Kapat) stays
   pinned while entries stream in. 60vh keeps the whole modal inside
   .supp-modal's 90vh cap even with the header row. */
.testprint-log-body[b-imaq0s7zlk] {
    max-height: 60vh;
    overflow-y: auto;
    margin-top: 8px;
    font-family: 'Consolas', 'Menlo', monospace;
    font-size: 0.85rem;
    line-height: 1.5;
}

.testprint-entry[b-imaq0s7zlk] {
    margin-bottom: 2px;
    white-space: pre-wrap;
}

.testprint-entry-exception[b-imaq0s7zlk] {
    margin: 4px 0 4px 24px;
}

.testprint-entry-exception pre[b-imaq0s7zlk] {
    margin: 4px 0 0 0;
    padding: 8px;
    border-radius: 4px;
    overflow-x: auto;
}

.testprint-testid[b-imaq0s7zlk] {
    font-family: 'Consolas', 'Menlo', monospace;
    font-size: 0.75rem;
}
/* /Components/Pages/Relay/Topology/DeviceNodeWidget.razor.rz.scp.css */
.device-node[b-ph3akta20x] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--neutral-layer-1, #fff);
    border: 2px solid var(--neutral-stroke-rest, #d1d1d1);
    min-width: 180px;
    max-width: 260px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: box-shadow 120ms, transform 120ms, border-color 120ms;
}

.device-node:hover[b-ph3akta20x] {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateY(-1px);
}

.device-node-icon[b-ph3akta20x] {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.device-node-meta[b-ph3akta20x] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    overflow: hidden;
}

.device-node-name[b-ph3akta20x] {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--neutral-foreground-rest, #242424);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.device-node-sub[b-ph3akta20x] {
    font-size: 0.72rem;
    color: var(--neutral-foreground-hint, #6c6c6c);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.device-node-ip[b-ph3akta20x] {
    font-size: 0.72rem;
    font-family: monospace;
    color: var(--neutral-foreground-hint, #6c6c6c);
    white-space: nowrap;
}

.device-node-printer[b-ph3akta20x] {
    font-size: 0.7rem;
    color: var(--neutral-foreground-hint, #6c6c6c);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Role-specific accents (border colour + icon tint) */
.device-node-hub[b-ph3akta20x] {
    border-color: #0078d4;
    background: linear-gradient(135deg, #f0f6ff 0%, #fff 100%);
    min-width: 200px;
}
.device-node-hub .device-node-icon[b-ph3akta20x] { color: #0078d4; }

.device-node-printercomputer[b-ph3akta20x] {
    border-color: #498205;
}
.device-node-printercomputer .device-node-icon[b-ph3akta20x] { color: #498205; }

.device-node-client[b-ph3akta20x] {
    border-color: #8764b8;
}
.device-node-client .device-node-icon[b-ph3akta20x] { color: #8764b8; }

.device-node-independent[b-ph3akta20x] {
    border-color: #808080;
    opacity: 0.85;
}
.device-node-independent .device-node-icon[b-ph3akta20x] { color: #808080; }

/* Pending / failed state overlays */
.device-node-state-pending[b-ph3akta20x] {
    animation: device-node-pulse-b-ph3akta20x 1.4s ease-in-out infinite;
}
@keyframes device-node-pulse-b-ph3akta20x {
    0%, 100% { box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.35); }
    50%      { box-shadow: 0 0 0 6px rgba(243, 156, 18, 0); }
}

.device-node-state-failed[b-ph3akta20x] {
    border-color: #e74c3c;
    background: #fff6f6;
}

.device-node-badge[b-ph3akta20x] {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.device-node-badge-pending[b-ph3akta20x] { color: #f39c12; border: 1px solid #f39c12; }
.device-node-badge-failed[b-ph3akta20x]  { color: #fff; background: #e74c3c; }
/* /Components/Pages/Relay/Topology/RelayTopologyView.razor.rz.scp.css */
.relay-topology[b-y9g0pozv4n] {
    position: relative;
    width: 100%;
    height: calc(100vh - 220px);
    min-height: 480px;
    background: var(--neutral-layer-2, #f5f5f5);
    border-radius: 8px;
    border: 1px solid var(--neutral-stroke-rest, #d1d1d1);
    overflow: hidden;
}

.relay-topology[b-y9g0pozv4n]  .diagram-canvas {
    width: 100%;
    height: 100%;
}

.relay-topology-empty[b-y9g0pozv4n] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--neutral-foreground-hint, #6c6c6c);
    font-size: 0.9rem;
    pointer-events: none;
}
/* /Components/Pages/Td/CommentPage.razor.rz.scp.css */
/* CommentPage scoped styles — ported from v4 Pages/Comment/Comment.razor.css.
   Layout authored in CommentPage.razor MARKUP so the b-* scope attribute is stamped (§9 trap 2).
   Colors use FluentUI design tokens (var(--color…)) where reasonable so the page is theme-adaptive;
   the supporter pill color is an inline HSL set in markup (deterministic per supporter). */

.comment-page[b-ms716j62mk] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

/* ═══ Filter Tabs ═══ */

.filter-tabs[b-ms716j62mk] {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid var(--colorNeutralStroke2);
    flex-wrap: wrap;
    width: 100%;
}

.filter-tab[b-ms716j62mk] {
    padding: 8px 20px;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: var(--colorNeutralForeground3);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.15s, border-color 0.15s;
}

.filter-tab:hover[b-ms716j62mk] {
    color: var(--colorNeutralForeground1);
}

.filter-tab.active[b-ms716j62mk] {
    color: var(--colorBrandForeground1);
    border-bottom-color: var(--colorBrandForeground1);
}

/* ═══ Filter Bar (Date + Search) ═══ */

.filter-bar[b-ms716j62mk] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
}

.date-filter[b-ms716j62mk] {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.date-btn[b-ms716j62mk] {
    padding: 5px 12px;
    border: 1px solid var(--colorNeutralStroke1);
    background: var(--colorNeutralBackground1);
    font-size: 12px;
    font-weight: 500;
    color: var(--colorNeutralForeground3);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.15s;
}

.date-btn:hover[b-ms716j62mk] {
    border-color: var(--colorBrandStroke1);
    color: var(--colorBrandForeground1);
}

.date-btn.active[b-ms716j62mk] {
    background: var(--colorBrandBackground);
    border-color: var(--colorBrandBackground);
    color: var(--colorNeutralForegroundOnBrand);
}

.search-box[b-ms716j62mk] {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ═══ Comment List ═══ */

.comment-list[b-ms716j62mk] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.comment-card[b-ms716j62mk] {
    background: var(--colorNeutralBackground1);
    border: 1px solid var(--colorNeutralStroke1);
    border-radius: 6px;
    box-shadow: var(--shadow4);
    overflow: hidden;
    width: 100%;
}

.comment-card-header[b-ms716j62mk] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    font-size: 13px;
    background: var(--colorNeutralBackground2);
    border-bottom: 1px solid var(--colorNeutralStroke2);
    width: 100%;
    box-sizing: border-box;
}

.comment-card-header .cell[b-ms716j62mk] {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.comment-card-header .cell-supporter[b-ms716j62mk] {
    width: 140px;
    flex-shrink: 0;
}

.comment-card-header .cell-customer[b-ms716j62mk] {
    width: 180px;
    flex-shrink: 0;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.comment-card-header .cell-pharmacy[b-ms716j62mk] {
    width: 200px;
    flex-shrink: 0;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
}

.comment-card-header .cell-date[b-ms716j62mk] {
    flex: 1;
    justify-content: flex-end;
    color: var(--colorNeutralForeground3);
    font-size: 12px;
}

.comment-card-body[b-ms716j62mk] {
    padding: 14px 20px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--colorNeutralForeground1);
    white-space: pre-wrap;
    word-break: break-word;
}

.customer-link[b-ms716j62mk] {
    color: var(--colorBrandForeground1);
    text-decoration: underline;
    font-weight: 500;
}

.pharmacy-link[b-ms716j62mk] {
    color: var(--colorBrandForeground1);
    text-decoration: underline;
    font-weight: 400;
}

/* ═══ Supporter Tag (pill) ═══ */

.tag[b-ms716j62mk] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    height: 22px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    border-radius: 4px;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ═══ Empty State ═══ */

.empty-comments[b-ms716j62mk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    color: var(--colorNeutralForeground3);
    font-size: 14px;
}

/* ═══ Pagination ═══ */

.comment-pager[b-ms716j62mk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    width: 100%;
}

.comment-pager-buttons[b-ms716j62mk] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.comment-pager-label[b-ms716j62mk] {
    padding: 0 12px;
}
/* /Components/Shared/CustomerSuggestInput.razor.rz.scp.css */
/* #0033 — themed via FluentUI v5 design tokens so the input + dropdown read correctly in BOTH
   light and dark. No hard-coded colours (v4 used #ffffff/#e8f0fe/#1d4ed8 which were unreadable in
   dark). Tokens resolve against the active FluentProvider theme at runtime. */

.customer-suggest-input[b-xv5rv1rqkg] {
    position: relative;
    width: 100%;
}

.customer-suggest-label[b-xv5rv1rqkg] {
    display: block;
    margin-bottom: 4px;
    font-size: var(--type-ramp-minus-1-font-size, 0.8rem);
    line-height: var(--type-ramp-minus-1-line-height, 1.2rem);
    color: var(--neutral-foreground-rest, #242424);
}

.customer-suggest-control[b-xv5rv1rqkg] {
    box-sizing: border-box;
    width: 100%;
    padding: 6px 10px;
    font-size: var(--type-ramp-base-font-size, 0.875rem);
    line-height: var(--type-ramp-base-line-height, 1.25rem);
    color: var(--neutral-foreground-rest, #242424);
    background-color: var(--neutral-fill-input-rest, #ffffff);
    border: 1px solid var(--neutral-stroke-rest, #d1d1d1);
    border-radius: var(--control-corner-radius, 4px);
    outline: none;
}

.customer-suggest-control[b-xv5rv1rqkg]::placeholder {
    color: var(--neutral-foreground-hint, #707070);
}

.customer-suggest-control:hover[b-xv5rv1rqkg] {
    border-color: var(--neutral-stroke-hover, #b3b3b3);
}

.customer-suggest-control:focus[b-xv5rv1rqkg] {
    border-color: var(--accent-fill-rest, #0f6cbd);
    box-shadow: 0 0 0 1px var(--accent-fill-rest, #0f6cbd);
}

.customer-suggest-control:disabled[b-xv5rv1rqkg] {
    color: var(--neutral-foreground-disabled, #bdbdbd);
    background-color: var(--neutral-fill-disabled, #f0f0f0);
    cursor: not-allowed;
}

.customer-suggest-dropdown[b-xv5rv1rqkg] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    margin: 2px 0 0 0;
    padding: 4px 0;
    list-style: none;
    background-color: var(--neutral-layer-floating, #ffffff);
    border: 1px solid var(--neutral-stroke-rest, #d1d1d1);
    border-radius: var(--control-corner-radius, 4px);
    box-shadow: var(--elevation-shadow-flyout, 0 4px 12px rgba(0, 0, 0, 0.18));
    max-height: 300px;
    overflow-y: auto;
}

.customer-suggest-item[b-xv5rv1rqkg] {
    padding: 6px 12px;
    cursor: pointer;
    font-size: var(--type-ramp-base-font-size, 0.875rem);
    line-height: 1.4;
    color: var(--neutral-foreground-rest, #242424);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.customer-suggest-item:hover[b-xv5rv1rqkg],
.customer-suggest-item-active[b-xv5rv1rqkg] {
    background-color: var(--neutral-fill-stealth-hover, #f0f0f0);
    color: var(--accent-foreground-rest, #0f6cbd);
}

.customer-suggest-loading[b-xv5rv1rqkg] {
    color: var(--neutral-foreground-hint, #707070);
    cursor: default;
    font-style: italic;
}
/* /Components/Shared/FeedbackPanel.razor.rz.scp.css */
/* FeedbackPanel — YALNIZ yerleşim/konum. Renk/gölge/radius markup'taki TİPLİ token sabitlerinden
   gelir (SystemColors/StylesVariables, bkz. FeedbackPanel.razor.cs — CLAUDE.md kural #7: elle
   var(--…) yazmak yasak). Bu dosyanın yüklenmesi App.razor'daki Mercury.Portal.Web.V5.styles.css
   linkine bağlıdır (kural #8); FluentButton/FluentIcon gibi kütüphane bileşenlerinin ürettiği
   elemanlar BİZİM scope attribute'umuzu taşımaz — onlara ::deep ile inilir. */

.feedback-panel[b-f6ig39yr9z] {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 380px;
    max-width: calc(100vw - 48px);
    max-height: calc(100vh - 96px);
    display: flex;
    flex-direction: column;
    /* Uygulama kabuğunun üzerinde (FluentLayout header/nav z-index 80–85). v5 toast/dialog
       katmanları kendi üst katmanlarında render olur; panel onların altında kalır. */
    z-index: 900;
}

/* Gizli = yalnız display:none — bileşen SÖKÜLMEZ, taslak durumu ve JS dinleyicileri yaşar.
   (position:fixed yüzünden JS görünürlük testi getClientRects() iledir, offsetParent değil.) */
.feedback-panel--hidden[b-f6ig39yr9z] {
    display: none;
}

.feedback-panel__header[b-f6ig39yr9z] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px 10px 16px;
    flex-shrink: 0;
}

.feedback-panel__body[b-f6ig39yr9z] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px;
    overflow-y: auto; /* max-height aşılırsa panel içi kaydırma — sayfa asla etkilenmez */
}

.feedback-panel__footer[b-f6ig39yr9z] {
    display: flex;
    justify-content: flex-end;
    padding: 10px 16px;
    flex-shrink: 0;
}

.feedback-panel__dropzone[b-f6ig39yr9z] {
    padding: 12px;
    text-align: center;
}

.feedback-panel__dropzone-hint[b-f6ig39yr9z] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.feedback-panel__preview[b-f6ig39yr9z] {
    position: relative;
    text-align: center;
}

.feedback-panel__preview img[b-f6ig39yr9z] {
    max-width: 100%;
    max-height: 120px;
    border-radius: 4px;
}

/* Kaldır (X) butonu bir FluentButton — kütüphane bileşeni scope attribute taşımaz, ::deep şart. */
.feedback-panel__preview[b-f6ig39yr9z]  .feedback-panel__preview-remove {
    position: absolute;
    top: -4px;
    right: -4px;
}

/* Dosya seçici görünmez; JS (openFilePicker) programatik click'ler. */
.feedback-panel__file-input[b-f6ig39yr9z] {
    display: none;
}
