/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-ys9busx8jr] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--pp-surface);
}

/* ── Top navbar ─────────────────────────────────────────── */
.surveyor-navbar[b-ys9busx8jr] {
    background: linear-gradient(95deg, var(--pp-dark) 0%, var(--pp-accent-dark) 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(26, 21, 53, 0.12);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
}

.surveyor-navbar-inner[b-ys9busx8jr] {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.navbar-burger[b-ys9busx8jr] {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: #fff;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.15s;
}

.navbar-burger:hover[b-ys9busx8jr] {
    background: rgba(255, 255, 255, 0.16);
}

.navbar-brand[b-ys9busx8jr] {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    color: #fff;
}

.navbar-brand img[b-ys9busx8jr] {
    height: 28px;
}

.navbar-brand-tagline[b-ys9busx8jr] {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.18rem 0.5rem;
    border-radius: 6px;
}

.navbar-nav-desktop[b-ys9busx8jr] {
    flex: 1;
    margin-left: 1.5rem;
    align-items: center;
    gap: 0.25rem;
}

.navbar-user[b-ys9busx8jr] {
    margin-left: auto;
}

/* ── User dropdown ──────────────────────────────────────── */
.user-menu-wrap[b-ys9busx8jr] {
    position: relative;
}

.user-menu-trigger[b-ys9busx8jr] {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #fff;
    padding: 0.35rem 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.15s;
}

.user-menu-trigger:hover[b-ys9busx8jr] {
    background: rgba(255, 255, 255, 0.16);
}

.user-menu-trigger > .bi-person-circle[b-ys9busx8jr] {
    font-size: 1.25rem;
}

.user-menu-name[b-ys9busx8jr] {
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-menu-backdrop[b-ys9busx8jr] {
    position: fixed;
    inset: 0;
    z-index: 1040;
}

.user-menu-dropdown[b-ys9busx8jr] {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: #fff;
    color: var(--pp-dark);
    min-width: 220px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    padding: 0.4rem 0;
    z-index: 1041;
}

.user-menu-item[b-ys9busx8jr] {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0.55rem 0.95rem;
    color: var(--pp-dark);
    text-decoration: none;
    font-size: 0.92rem;
    cursor: pointer;
    text-align: left;
}

.user-menu-item:hover[b-ys9busx8jr] {
    background: var(--color-brand-softer);
    color: var(--pp-accent-dark);
}

.user-menu-item-danger[b-ys9busx8jr] {
    color: var(--color-danger);
}

.user-menu-item-danger:hover[b-ys9busx8jr] {
    background: var(--color-danger-soft);
    color: var(--color-danger);
}

.user-menu-divider[b-ys9busx8jr] {
    height: 1px;
    background: var(--color-border);
    margin: 0.35rem 0;
}

.user-menu-logout-form[b-ys9busx8jr] {
    margin: 0;
}

/* ── Mobile drawer ─────────────────────────────────────── */
.mobile-nav-backdrop[b-ys9busx8jr] {
    position: fixed;
    inset: 0;
    background: rgba(26, 21, 53, 0.45);
    z-index: 1050;
}

.mobile-nav-panel[b-ys9busx8jr] {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    max-width: 80vw;
    background: #fff;
    box-shadow: 6px 0 24px rgba(26, 21, 53, 0.18);
    z-index: 1051;
    display: flex;
    flex-direction: column;
    animation: mobile-nav-slide-in-b-ys9busx8jr 0.18s ease-out;
}

@keyframes mobile-nav-slide-in-b-ys9busx8jr {
    from { transform: translateX(-100%); }
    to   { transform: translateX(0); }
}

.mobile-nav-header[b-ys9busx8jr] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav-title[b-ys9busx8jr] {
    font-weight: 700;
    color: var(--pp-dark);
    font-size: 1rem;
}

.mobile-nav-close[b-ys9busx8jr] {
    background: transparent;
    border: none;
    color: var(--color-muted);
    font-size: 1.15rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}

.mobile-nav-close:hover[b-ys9busx8jr] {
    color: var(--pp-dark);
}

/* Mobil drawer içindeki NavMenu — desktop dark/white varyantını override et.
   ::deep selector NavMenu component'inin scope'una iner. */
.mobile-nav-panel[b-ys9busx8jr]  .surveyor-nav {
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem;
    gap: 0.15rem;
}

.mobile-nav-panel[b-ys9busx8jr]  .surveyor-nav-link {
    color: var(--pp-dark);
    padding: 0.7rem 0.95rem;
}

.mobile-nav-panel[b-ys9busx8jr]  .surveyor-nav-link:hover {
    background: var(--color-brand-softer);
    color: var(--pp-accent-dark);
}

.mobile-nav-panel[b-ys9busx8jr]  .surveyor-nav-link.active {
    background: var(--color-brand-soft);
    color: var(--pp-accent-dark);
}

/* ── Main content ──────────────────────────────────────── */
.surveyor-main[b-ys9busx8jr] {
    flex: 1;
    padding: 0;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.surveyor-nav[b-oyrk8sprwl] {
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
    align-items: center;
}

[b-oyrk8sprwl] .surveyor-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

[b-oyrk8sprwl] .surveyor-nav-link:hover {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
}

[b-oyrk8sprwl] .surveyor-nav-link.active {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-weight: 600;
}

[b-oyrk8sprwl] .surveyor-nav-link i {
    font-size: 1rem;
}

/* Mobil drawer-içi varyant MainLayout.razor.css'e taşındı —
   bu component scope'undan ancestor `.mobile-nav-panel` görünmez. */
/* /Components/Pages/Auth/AccessDenied.razor.rz.scp.css */
.access-denied-icon[b-xca1m71s86] {
    font-size: 3rem;
    color: var(--color-warning);
}

.login-button-link[b-xca1m71s86] {
    text-decoration: none;
}
/* /Components/Pages/Auth/ForgotPassword.razor.rz.scp.css */
/* .login-info site.css'te tanımlı (Login + ForgotPassword paylaşır) */
/* /Components/Pages/Auth/Help.razor.rz.scp.css */
.help-section[b-r4rmnnlhy0] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.help-item[b-r4rmnnlhy0] {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: #faf8ff;
    border: 1px solid #ece6ff;
    border-radius: 10px;
}

.help-item-icon[b-r4rmnnlhy0] {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pp-accent-dark);
    color: #fff;
    font-size: 1rem;
}

.help-item-body[b-r4rmnnlhy0] {
    flex: 1;
}

.help-item-title[b-r4rmnnlhy0] {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pp-dark);
    margin-bottom: 0.15rem;
}

.help-item-text[b-r4rmnnlhy0] {
    font-size: 0.95rem;
    color: #4f486f;
    display: flex;
    flex-direction: column;
}

.help-item-text a[b-r4rmnnlhy0] {
    color: var(--pp-accent-dark);
    text-decoration: none;
    font-weight: 500;
}

.help-item-text a:hover[b-r4rmnnlhy0] {
    text-decoration: underline;
}

.help-item-meta[b-r4rmnnlhy0] {
    font-size: 0.75rem;
    color: #7d7897;
    margin-top: 0.15rem;
}

.help-tips[b-r4rmnnlhy0] {
    background: #f7f4ff;
    border-radius: 10px;
    padding: 1rem 1.15rem;
    margin-bottom: 1rem;
}

.help-tips-title[b-r4rmnnlhy0] {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--pp-dark);
    margin: 0 0 0.5rem;
}

.help-tips-list[b-r4rmnnlhy0] {
    margin: 0;
    padding-left: 1rem;
    font-size: 0.875rem;
    color: #4f486f;
    line-height: 1.55;
}

.help-tips-list li[b-r4rmnnlhy0] {
    margin-bottom: 0.4rem;
}

.help-tips-list li:last-child[b-r4rmnnlhy0] {
    margin-bottom: 0;
}
/* /Components/Pages/Auth/Login.razor.rz.scp.css */
.login-container[b-vqghr762no] {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.login-left[b-vqghr762no] {
    flex: 1;
    background: linear-gradient(145deg, var(--pp-dark) 0%, #271f4f 56%, var(--pp-accent-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-left-content[b-vqghr762no] {
    text-align: center;
    color: #fff;
}

.login-logo[b-vqghr762no] {
    width: 240px;
    height: auto;
    filter: drop-shadow(0 4px 16px rgba(124, 58, 237, 0.25));
    margin-bottom: 1.25rem;
}

.login-brand[b-vqghr762no] {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    margin: 0;
    /* Blazor 8 enhanced navigation sayfa load'unda h1'e auto-focus uygular (a11y);
       browser default focus ring giriş sayfasında dekoratif başlığa odaklı çerçeve
       gösterir → estetik bozar, etkileşimli bir element değil, kapatıyoruz. */
    outline: none;
}

.login-brand:focus[b-vqghr762no],
.login-brand:focus-visible[b-vqghr762no] {
    outline: none;
}

.login-subtitle[b-vqghr762no] {
    margin: 0.6rem 0 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.78);
}

.login-right[b-vqghr762no] {
    flex: 1;
    background-color: #efebfb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-form-wrapper[b-vqghr762no] {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 34px rgba(26, 21, 53, 0.14);
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
}

.login-form-title[b-vqghr762no] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pp-dark);
    margin: 0 0 0.25rem;
}

.login-form-subtitle[b-vqghr762no] {
    font-size: 0.92rem;
    color: #6b6589;
    margin: 0 0 1.6rem;
}

.login-alert[b-vqghr762no] {
    background: #fff0f3;
    border: 1px solid #ffcad5;
    color: #9f2340;
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    margin-bottom: 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-field[b-vqghr762no] {
    margin-bottom: 1rem;
}

.login-label[b-vqghr762no] {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #352f52;
    margin-bottom: 0.35rem;
}

.login-input-wrapper[b-vqghr762no] {
    position: relative;
    display: flex;
    align-items: center;
}

.login-input-wrapper i[b-vqghr762no] {
    position: absolute;
    left: 13px;
    color: #7d7897;
    font-size: 1rem;
    pointer-events: none;
}

.login-input[b-vqghr762no],
[b-vqghr762no] .login-input {
    width: 100%;
    padding: 0.72rem 0.78rem 0.72rem 2.45rem;
    border: 1px solid #d9d3ee;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--pp-dark);
    background-color: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.login-input:focus[b-vqghr762no],
[b-vqghr762no] .login-input:focus {
    border-color: var(--pp-accent-dark);
    box-shadow: 0 0 0 3px rgba(124, 92, 252, 0.16);
}

.login-validation[b-vqghr762no],
[b-vqghr762no] .login-validation {
    margin-top: 0.3rem;
    font-size: 0.82rem;
    color: #c62855;
}

[b-vqghr762no] .login-check .form-check-input {
    margin-top: 0;
}

.login-row[b-vqghr762no] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1.15rem;
}

.login-check[b-vqghr762no] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4f486f;
}

.login-link[b-vqghr762no] {
    font-size: 0.875rem;
    color: var(--pp-accent-dark);
    text-decoration: none;
    font-weight: 500;
}

.login-link:hover[b-vqghr762no] {
    text-decoration: underline;
}

.login-button[b-vqghr762no] {
    width: 100%;
    padding: 0.78rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--pp-dark) 0%, var(--pp-accent-dark) 100%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.1s ease, opacity 0.2s ease;
}

.login-button:hover:not(:disabled)[b-vqghr762no] {
    opacity: 0.95;
    transform: translateY(-1px);
}

.login-button:disabled[b-vqghr762no] {
    opacity: 0.72;
    cursor: not-allowed;
}

.login-spinner[b-vqghr762no] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: login-spin-b-vqghr762no 0.9s linear infinite;
}

@keyframes login-spin-b-vqghr762no {
    to {
        transform: rotate(360deg);
    }
}

.login-help[b-vqghr762no] {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #ece6ff;
    font-size: 0.875rem;
    color: #6b6589;
}

.login-help a[b-vqghr762no] {
    color: var(--pp-accent-dark);
    text-decoration: none;
    font-weight: 500;
    margin-left: 0.35rem;
}

.login-help a:hover[b-vqghr762no] {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .login-container[b-vqghr762no] {
        flex-direction: column;
    }

    .login-left[b-vqghr762no] {
        flex: none;
        min-height: 230px;
        padding: 1.5rem;
    }

    .login-brand[b-vqghr762no] {
        font-size: 2rem;
    }

    .login-right[b-vqghr762no] {
        padding: 1.25rem;
    }

    .login-form-wrapper[b-vqghr762no] {
        max-width: 520px;
        padding: 1.5rem;
    }
}
/* /Components/Pages/Entries/Entries.razor.rz.scp.css */
/* ── Stat Bar ───────────────────────────────────────── */
.entry-stat[b-w8wma6r4vj] {
    width: 100%;
    background: #fff;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.12s, box-shadow 0.12s, transform 0.12s;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.entry-stat:hover[b-w8wma6r4vj] {
    border-color: var(--color-brand);
    transform: translateY(-1px);
}

.entry-stat-active[b-w8wma6r4vj] {
    color: #fff !important;
    border-color: transparent;
}

.entry-stat-secondary.entry-stat-active[b-w8wma6r4vj] { background: var(--color-muted); }
.entry-stat-info.entry-stat-active[b-w8wma6r4vj]      { background: var(--color-info); color: #1a3540 !important; }
.entry-stat-warning.entry-stat-active[b-w8wma6r4vj]   { background: var(--color-warning); color: #5a3f00 !important; }
.entry-stat-success.entry-stat-active[b-w8wma6r4vj]   { background: var(--color-success); }
.entry-stat-danger.entry-stat-active[b-w8wma6r4vj]    { background: var(--color-danger); }

.entry-stat-label[b-w8wma6r4vj] {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.entry-stat-active .entry-stat-label[b-w8wma6r4vj] {
    color: inherit;
    opacity: 0.85;
}

.entry-stat-value[b-w8wma6r4vj] {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--pp-dark);
    line-height: 1.1;
}

.entry-stat-active .entry-stat-value[b-w8wma6r4vj] {
    color: inherit;
}

.entry-stat-amount[b-w8wma6r4vj] {
    font-size: 0.78rem;
    color: var(--color-muted);
    font-variant-numeric: tabular-nums;
}

.entry-stat-active .entry-stat-amount[b-w8wma6r4vj] {
    color: inherit;
    opacity: 0.85;
}

/* ── Active filter bar ─────────────────────────────── */
.filter-active-bar[b-w8wma6r4vj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-brand-softer);
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
}

.filter-active-label[b-w8wma6r4vj] {
    font-size: 0.875rem;
    color: var(--pp-dark);
}

/* ── Entry list ────────────────────────────────────── */
.entry-list[b-w8wma6r4vj] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.entry-item[b-w8wma6r4vj] {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}

.entry-item-main[b-w8wma6r4vj] {
    flex: 1;
    min-width: 0;
}

.entry-item-project[b-w8wma6r4vj] {
    font-weight: 700;
    color: var(--pp-dark);
    margin-bottom: 0.25rem;
}

.entry-item-meta[b-w8wma6r4vj] {
    font-size: 0.85rem;
    color: var(--color-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.25rem;
}

.entry-item-quota[b-w8wma6r4vj] {
    color: var(--pp-accent-dark);
    font-weight: 500;
}

.entry-item-sep[b-w8wma6r4vj] {
    color: var(--color-border);
}

.entry-item-time[b-w8wma6r4vj] {
    font-size: 0.78rem;
    color: var(--color-muted);
}

.entry-item-reject[b-w8wma6r4vj] {
    font-size: 0.78rem;
    color: var(--color-danger);
    background: var(--color-danger-soft);
    padding: 0.3rem 0.55rem;
    border-radius: 6px;
    margin-top: 0.4rem;
}

.entry-item-side[b-w8wma6r4vj] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
    flex-shrink: 0;
}

.entry-item-amount[b-w8wma6r4vj] {
    font-weight: 700;
    color: var(--pp-dark);
    font-variant-numeric: tabular-nums;
}

@media (max-width: 575.98px) {
    .entry-item[b-w8wma6r4vj] {
        flex-direction: column;
    }
    .entry-item-side[b-w8wma6r4vj] {
        flex-direction: row;
        align-self: stretch;
        justify-content: space-between;
        align-items: center;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.dashboard-greet[b-5njxy1tq88] {
    padding-top: 0.25rem;
}

.dashboard-greet-title[b-5njxy1tq88] {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--pp-dark);
    margin: 0;
}

.dashboard-greet-sub[b-5njxy1tq88] {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin: 0.25rem 0 0;
}

/* ── Stat cards ─────────────────────────────────────────── */
.dash-card[b-5njxy1tq88] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    text-decoration: none;
    color: inherit;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.dash-card-link:hover[b-5njxy1tq88] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.dash-card-icon[b-5njxy1tq88] {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
}

.dash-card-icon-brand[b-5njxy1tq88]   { background: var(--color-brand); }
.dash-card-icon-info[b-5njxy1tq88]    { background: #0dcaf0; }
.dash-card-icon-warning[b-5njxy1tq88] { background: var(--color-warning); color: #5a3f00; }
.dash-card-icon-success[b-5njxy1tq88] { background: var(--color-success); }

.dash-card-body[b-5njxy1tq88] {
    min-width: 0;
    flex: 1;
}

.dash-card-label[b-5njxy1tq88] {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dash-card-value[b-5njxy1tq88] {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--pp-dark);
    line-height: 1.15;
    margin-top: 0.1rem;
}

.dash-card-currency[b-5njxy1tq88] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-muted);
}

.dash-card-meta[b-5njxy1tq88] {
    font-size: 0.75rem;
    color: var(--color-muted);
    margin-top: 0.15rem;
}

/* ── Recent entries card ────────────────────────────────── */
.recent-card[b-5njxy1tq88] {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.recent-item[b-5njxy1tq88] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
}

.recent-item-main[b-5njxy1tq88] {
    min-width: 0;
}

.recent-item-title[b-5njxy1tq88] {
    font-weight: 600;
    color: var(--pp-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recent-item-meta[b-5njxy1tq88] {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-top: 0.15rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.recent-item-quota[b-5njxy1tq88] {
    color: var(--pp-accent-dark);
    font-weight: 500;
}

.recent-item-sep[b-5njxy1tq88] {
    color: var(--color-border);
}

.recent-item-side[b-5njxy1tq88] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
    flex-shrink: 0;
}

.recent-item-amount[b-5njxy1tq88] {
    font-weight: 700;
    color: var(--pp-dark);
}

/* ── CTA ───────────────────────────────────────────────── */
.dashboard-cta[b-5njxy1tq88] {
    background: linear-gradient(135deg, var(--pp-dark) 0%, var(--pp-accent-dark) 100%);
    border: none;
    padding: 0.85rem 2rem;
    box-shadow: 0 8px 20px rgba(124, 92, 252, 0.25);
}

.dashboard-cta:hover[b-5njxy1tq88] {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(124, 92, 252, 0.35);
}

@media (max-width: 575.98px) {
    .recent-item[b-5njxy1tq88] {
        flex-direction: column;
        align-items: flex-start;
    }

    .recent-item-side[b-5njxy1tq88] {
        flex-direction: row;
        align-items: center;
        align-self: stretch;
        justify-content: space-between;
    }
}
/* /Components/Pages/Profile/Profile.razor.rz.scp.css */
/* ── Profil Hero (avatar + ad + actions) ───────────── */
.profile-hero[b-wakaodif3x] {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    padding: 1.5rem 1.25rem;
    text-align: center;
    height: 100%;
}

.profile-avatar[b-wakaodif3x] {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pp-dark) 0%, var(--pp-accent-dark) 100%);
    color: #fff;
    margin: 0 auto 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    font-weight: 700;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(124, 92, 252, 0.25);
}

.profile-avatar img[b-wakaodif3x] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name[b-wakaodif3x] {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--pp-dark);
    margin-bottom: 0.2rem;
}

.profile-role[b-wakaodif3x] {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--pp-accent-dark);
    background: var(--color-brand-soft);
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    margin-bottom: 1.15rem;
}

.profile-actions[b-wakaodif3x] {
    margin-top: 0.5rem;
}

.profile-note[b-wakaodif3x] {
    font-size: 0.75rem;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.5;
}

/* ── Bilgi listesi ───────────────────────────────────── */
.profile-info-card[b-wakaodif3x] {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    padding: 1.25rem 1.4rem;
    height: 100%;
}

.profile-info-section-title[b-wakaodif3x] {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--color-border);
}

.profile-info-list[b-wakaodif3x] {
    display: grid;
    grid-template-columns: minmax(140px, max-content) 1fr;
    gap: 0.4rem 1rem;
    margin: 0;
}

.profile-info-list dt[b-wakaodif3x] {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
}

.profile-info-list dt i[b-wakaodif3x] {
    width: 1rem;
    text-align: center;
}

.profile-info-list dd[b-wakaodif3x] {
    font-size: 0.92rem;
    color: var(--pp-dark);
    margin: 0;
    word-break: break-word;
}

.profile-info-badge[b-wakaodif3x] {
    font-size: 0.7rem;
    color: var(--color-muted);
    background: var(--color-surface-muted);
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    margin-left: 0.4rem;
}

.profile-code[b-wakaodif3x] {
    background: var(--color-surface-muted);
    padding: 0.15rem 0.45rem;
    border-radius: 6px;
    font-family: ui-monospace, Menlo, Monaco, monospace;
    color: var(--pp-accent-dark);
    font-weight: 600;
}

/* ── Performans Özeti ────────────────────────────────── */
.profile-stats-card[b-wakaodif3x] {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.profile-stats-header[b-wakaodif3x] {
    background: var(--color-surface-muted);
    padding: 0.65rem 1.15rem;
    font-weight: 600;
    color: var(--pp-dark);
    border-bottom: 1px solid var(--color-border);
}

.profile-stats-grid[b-wakaodif3x] {
    margin: 0;
    padding: 1rem;
}

.profile-stat[b-wakaodif3x] {
    text-align: center;
}

.profile-stat-value[b-wakaodif3x] {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--pp-dark);
    line-height: 1.1;
}

.profile-stat-label[b-wakaodif3x] {
    font-size: 0.78rem;
    color: var(--color-muted);
    margin-top: 0.25rem;
}

@media (max-width: 575.98px) {
    .profile-info-list[b-wakaodif3x] {
        grid-template-columns: 1fr;
        gap: 0.15rem;
    }
    .profile-info-list dt[b-wakaodif3x] { margin-top: 0.5rem; }
    .profile-info-list dt:first-child[b-wakaodif3x] { margin-top: 0; }
}
/* /Components/Pages/Projects/ProjectEntry.razor.rz.scp.css */
/* ── Info cards (üstte 4'lü grid) ──────────────────────── */
.info-card[b-lqisbj8jh0] {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.info-card-label[b-lqisbj8jh0] {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.info-card-value[b-lqisbj8jh0] {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--pp-dark);
    line-height: 1.2;
}

.info-card-unit[b-lqisbj8jh0] {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-muted);
    margin-left: 0.15rem;
}

/* ── Briefing box ──────────────────────────────────────── */
.briefing-box[b-lqisbj8jh0] {
    background: #eef5ff;
    border: 1px solid #c8dcff;
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    color: #1c4587;
}

.briefing-title[b-lqisbj8jh0] {
    font-weight: 700;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

.briefing-text[b-lqisbj8jh0] {
    font-size: 0.9rem;
    line-height: 1.55;
    white-space: pre-wrap;
}

/* ── Section title ─────────────────────────────────────── */
.section-title[b-lqisbj8jh0] {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pp-dark);
    margin: 1.5rem 0 0.85rem;
}

/* ── Quota cards ───────────────────────────────────────── */
.quota-card[b-lqisbj8jh0] {
    width: 100%;
    background: #fff;
    border: 2px solid var(--color-border);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    height: 100%;
    transition: transform 0.12s, border-color 0.12s, box-shadow 0.12s, background 0.12s;
}

.quota-card:hover:not(:disabled)[b-lqisbj8jh0] {
    border-color: var(--color-brand);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 92, 252, 0.18);
}

.quota-card:disabled[b-lqisbj8jh0] {
    cursor: not-allowed;
}

.quota-card-full[b-lqisbj8jh0] {
    opacity: 0.65;
    background: var(--color-surface-muted);
}

.quota-card-starting[b-lqisbj8jh0] {
    border-color: var(--color-brand) !important;
    background: var(--color-brand-softer);
}

.quota-card-body[b-lqisbj8jh0] {
    flex: 1;
}

.quota-card-path[b-lqisbj8jh0] {
    font-weight: 700;
    color: var(--pp-dark);
    font-size: 0.95rem;
    line-height: 1.35;
    margin-bottom: 0.3rem;
}

.quota-card-helper[b-lqisbj8jh0] {
    font-size: 0.8rem;
    color: var(--color-muted);
    line-height: 1.45;
}

.quota-card-progress[b-lqisbj8jh0] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.quota-progress-bar[b-lqisbj8jh0] {
    height: 6px;
    background: var(--color-border);
    border-radius: 999px;
    overflow: hidden;
}

.quota-progress-fill[b-lqisbj8jh0] {
    height: 100%;
    border-radius: 999px;
    transition: width 0.4s ease;
}

.quota-progress-ok[b-lqisbj8jh0]      { background: var(--color-success); }
.quota-progress-warning[b-lqisbj8jh0] { background: var(--color-warning); }
.quota-progress-danger[b-lqisbj8jh0]  { background: var(--color-danger); }
.quota-progress-full[b-lqisbj8jh0]    { background: var(--color-muted); }

.quota-card-stats[b-lqisbj8jh0] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.8rem;
    color: var(--color-muted);
}

.quota-card-remaining strong[b-lqisbj8jh0] {
    color: var(--pp-dark);
    font-size: 0.95rem;
}

.quota-card-status-full[b-lqisbj8jh0] {
    color: var(--color-success);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.quota-card-cta[b-lqisbj8jh0] {
    background: linear-gradient(135deg, var(--pp-dark) 0%, var(--pp-accent-dark) 100%);
    color: #fff;
    border-radius: 10px;
    padding: 0.55rem 0.9rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    transition: opacity 0.15s;
}

.quota-card-full .quota-card-cta[b-lqisbj8jh0] {
    background: var(--color-muted);
}

/* ── Spinner ───────────────────────────────────────────── */
.surveyor-quota-spinner[b-lqisbj8jh0] {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: surveyor-quota-spin-b-lqisbj8jh0 0.8s linear infinite;
}

@keyframes surveyor-quota-spin-b-lqisbj8jh0 {
    to { transform: rotate(360deg); }
}
/* /Components/Pages/Projects/Projects.razor.rz.scp.css */
/* ── Search ─────────────────────────────────────────────── */
.search-wrap[b-qg6chgjiff] {
    position: relative;
    display: flex;
    align-items: center;
}

.search-wrap i[b-qg6chgjiff] {
    position: absolute;
    left: 11px;
    color: var(--color-muted);
    font-size: 0.95rem;
    pointer-events: none;
}

.search-input[b-qg6chgjiff] {
    padding: 0.45rem 0.75rem 0.45rem 2.1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--color-text);
    background: #fff;
    min-width: 240px;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.search-input:focus[b-qg6chgjiff] {
    border-color: var(--color-brand);
    box-shadow: 0 0 0 3px var(--color-brand-soft);
}

@media (max-width: 575.98px) {
    .search-input[b-qg6chgjiff] { min-width: 0; width: 100%; }
    .search-wrap[b-qg6chgjiff] { width: 100%; }
}

/* ── Project card ───────────────────────────────────────── */
.project-card[b-qg6chgjiff] {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    padding: 1.1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: transform 0.12s, box-shadow 0.12s, border-color 0.12s;
}

.project-card:hover[b-qg6chgjiff] {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-brand-soft);
}

.project-card-header[b-qg6chgjiff] {
    min-height: 0;
}

.project-card-customer[b-qg6chgjiff] {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.project-card-title[b-qg6chgjiff] {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--pp-dark);
    margin: 0;
    line-height: 1.3;
    /* 2 satıra sınırla */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-card-desc[b-qg6chgjiff] {
    font-size: 0.875rem;
    color: var(--color-muted);
    line-height: 1.5;
    margin: 0;
    flex: 1;
    /* 3 satıra sınırla */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-card-meta[b-qg6chgjiff] {
    display: flex;
    gap: 1.1rem;
    flex-wrap: wrap;
    padding: 0.6rem 0.8rem;
    background: var(--color-surface-muted);
    border-radius: 10px;
}

.project-card-meta-item[b-qg6chgjiff] {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    font-size: 0.875rem;
}

.project-card-meta-item i[b-qg6chgjiff] {
    font-size: 0.95rem;
    align-self: center;
}

.project-card-meta-value[b-qg6chgjiff] {
    font-weight: 700;
    color: var(--pp-dark);
}

.project-card-meta-label[b-qg6chgjiff] {
    font-size: 0.75rem;
    color: var(--color-muted);
}

.project-card-footer[b-qg6chgjiff] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.project-card-limit[b-qg6chgjiff] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: var(--color-muted);
    background: var(--color-surface-muted);
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
}

.project-card-cta[b-qg6chgjiff] {
    background: linear-gradient(135deg, var(--pp-dark) 0%, var(--pp-accent-dark) 100%);
    border: none;
    font-weight: 600;
}

.project-card-cta:hover[b-qg6chgjiff] {
    background: linear-gradient(135deg, var(--pp-accent-dark) 0%, var(--pp-dark) 100%);
}
/* /Components/Pages/Wallet/Wallet.razor.rz.scp.css */
/* ── Bakiye hero ────────────────────────────────────────── */
.balance-hero[b-eusdfy0njz] {
    background: linear-gradient(135deg, var(--pp-dark) 0%, var(--pp-accent-dark) 100%);
    color: #fff;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 12px 28px rgba(124, 92, 252, 0.22);
    position: relative;
    overflow: hidden;
}

.balance-hero[b-eusdfy0njz]::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.balance-hero-inner[b-eusdfy0njz] {
    position: relative;
    z-index: 1;
}

.balance-label[b-eusdfy0njz] {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.balance-amount[b-eusdfy0njz] {
    font-size: 2.4rem;
    font-weight: 800;
    margin: 0.4rem 0 1rem;
    line-height: 1.1;
}

.balance-unit[b-eusdfy0njz] {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    margin-left: 0.3rem;
}

.balance-cta[b-eusdfy0njz] {
    background: #fff;
    color: var(--pp-accent-dark);
    border: none;
    padding: 0.65rem 1.4rem;
    font-weight: 700;
    border-radius: 10px;
    transition: transform 0.12s, box-shadow 0.12s;
}

.balance-cta:hover:not(:disabled)[b-eusdfy0njz] {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
    color: var(--pp-accent-dark);
}

.balance-cta:disabled[b-eusdfy0njz] {
    opacity: 0.55;
    cursor: not-allowed;
}

/* ── Mini stat cards ──────────────────────────────────── */
.mini-stat[b-eusdfy0njz] {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.mini-stat-icon[b-eusdfy0njz] {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.mini-stat-icon-info[b-eusdfy0njz]    { background: var(--color-info); }
.mini-stat-icon-success[b-eusdfy0njz] { background: var(--color-success); }
.mini-stat-icon-danger[b-eusdfy0njz]  { background: var(--color-danger); }

.mini-stat-label[b-eusdfy0njz] {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mini-stat-value[b-eusdfy0njz] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pp-dark);
    margin-top: 0.1rem;
}

/* ── Section card (banka, işlemler) ───────────────────── */
.section-card[b-eusdfy0njz] {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

/* ── Banka liste ──────────────────────────────────────── */
.bank-item[b-eusdfy0njz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.bank-item-main[b-eusdfy0njz] {
    flex: 1;
    min-width: 0;
}

.bank-item-name[b-eusdfy0njz] {
    font-weight: 600;
    color: var(--pp-dark);
}

.bank-item-iban[b-eusdfy0njz] {
    font-size: 0.875rem;
    color: var(--color-muted);
    margin-top: 0.15rem;
    font-family: ui-monospace, Menlo, Monaco, monospace;
}

.bank-item-meta[b-eusdfy0njz] {
    font-size: 0.78rem;
    margin-top: 0.25rem;
}

/* ── İşlem liste ──────────────────────────────────────── */
.tx-item[b-eusdfy0njz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.tx-item-main[b-eusdfy0njz] {
    flex: 1;
    min-width: 0;
}

.tx-item-desc[b-eusdfy0njz] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pp-dark);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tx-item-meta[b-eusdfy0njz] {
    font-size: 0.78rem;
    color: var(--color-muted);
    margin-top: 0.15rem;
    margin-left: 1.5rem;
}

.tx-item-amount[b-eusdfy0njz] {
    font-weight: 700;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}
