/* =========================================================================
   Panel - tasarim sistemi
   Tek vurgu rengi, yumusak sinirlar, sakin koyu yuzeyler.
   ========================================================================= */

:root {
    /* Yuzeyler */
    --bg:            #0c1016;
    --bg-elev:       #11161f;
    --surface:       #141a24;
    --surface-2:     #1a2130;
    --surface-hover: #1f2735;

    /* Sinirlar */
    --border:        #222b3a;
    --border-strong: #2f3a4d;

    /* Metin */
    --text:          #e8edf4;
    --text-muted:    #8d9bb0;
    --text-dim:      #616e82;

    /* Vurgu */
    --accent:        #6d7cff;
    --accent-hover:  #8290ff;
    --accent-soft:   rgba(109, 124, 255, 0.12);
    --accent-line:   rgba(109, 124, 255, 0.35);

    /* Durumlar */
    --success:       #3ecf8e;
    --success-soft:  rgba(62, 207, 142, 0.12);
    --warning:       #f0b429;
    --warning-soft:  rgba(240, 180, 41, 0.12);
    --danger:        #f2686b;
    --danger-soft:   rgba(242, 104, 107, 0.12);
    --info:          #5aa9f5;
    --info-soft:     rgba(90, 169, 245, 0.12);

    /* Olcu */
    --radius:        10px;
    --radius-lg:     14px;
    --sidebar-w:     244px;

    --font: "Segoe UI", -apple-system, BlinkMacSystemFont, Inter, Roboto,
            "Helvetica Neue", Arial, sans-serif;
    --mono: "Cascadia Mono", Consolas, "SF Mono", Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html, body { height: 100%; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 14.5px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.011em; }
h1 { font-size: 1.4rem; }
h2 { font-size: 1.08rem; }
h3 { font-size: 0.95rem; }

p { margin: 0 0 0.8rem; }
p:last-child { margin-bottom: 0; }

/* =========================================================================
   Yerlesim
   ========================================================================= */

.shell { display: flex; min-height: 100vh; }

.sidebar {
    width: var(--sidebar-w);
    flex: 0 0 var(--sidebar-w);
    background: var(--bg-elev);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
}

.sidebar__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 20px 18px;
    border-bottom: 1px solid var(--border);
}

.sidebar__mark {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: linear-gradient(140deg, var(--accent), #4f5ce0);
    display: grid; place-items: center;
    font-weight: 700; font-size: 14px; color: #fff;
    flex-shrink: 0;
}

.sidebar__name { font-weight: 600; letter-spacing: -0.01em; }
.sidebar__role { font-size: 11px; color: var(--text-dim); letter-spacing: 0.04em; text-transform: uppercase; }

.sidebar__nav { padding: 14px 12px; flex: 1; overflow-y: auto; }

.sidebar__label {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    padding: 14px 10px 6px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 2px;
    position: relative;
    transition: background 0.12s ease, color 0.12s ease;
}
.nav-item:hover { background: var(--surface); color: var(--text); }
.nav-item.is-active { background: var(--accent-soft); color: var(--text); font-weight: 500; }
.nav-item.is-active::before {
    content: "";
    position: absolute; left: -12px; top: 50%;
    transform: translateY(-50%);
    width: 3px; height: 18px;
    background: var(--accent);
    border-radius: 0 3px 3px 0;
}
.nav-item__icon { width: 17px; text-align: center; opacity: 0.85; flex-shrink: 0; }
.nav-item__badge {
    margin-left: auto;
    background: var(--danger-soft);
    color: var(--danger);
    font-size: 11px;
    font-weight: 600;
    padding: 1px 7px;
    border-radius: 20px;
}

.sidebar__foot { padding: 12px; border-top: 1px solid var(--border); }

.main { flex: 1; min-width: 0; display: flex; flex-direction: column; }

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 28px;
    border-bottom: 1px solid var(--border);
    background: rgba(12, 16, 22, 0.85);
    backdrop-filter: blur(8px);
    position: sticky; top: 0; z-index: 20;
}

.topbar__actions { display: flex; align-items: center; gap: 10px; }

.credit-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: 20px;
}
.credit-chip__label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; }
.credit-chip__value { font-weight: 650; font-variant-numeric: tabular-nums; }

.content { padding: 26px 28px 56px; max-width: 1360px; width: 100%; }

.page-head { margin-bottom: 22px; }
.page-head__sub { color: var(--text-muted); font-size: 13.5px; margin-top: 3px; }

/* =========================================================================
   Kartlar / izgara
   ========================================================================= */

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
}
.card + .card { margin-top: 18px; }
.card__head {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    margin: -20px -20px 18px;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
}
.card__title { font-size: 0.96rem; font-weight: 600; }
.card__hint { font-size: 12.5px; color: var(--text-dim); }

.grid { display: grid; gap: 18px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--sidebarish { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); }

.stat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 17px 19px;
}
.stat__label {
    font-size: 11.5px; color: var(--text-dim);
    text-transform: uppercase; letter-spacing: 0.06em;
    margin-bottom: 7px;
}
.stat__value {
    font-size: 1.65rem; font-weight: 650; letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums; line-height: 1.15;
}
.stat__meta { font-size: 12.5px; color: var(--text-muted); margin-top: 5px; }
.stat--accent { border-color: var(--accent-line); background: linear-gradient(160deg, var(--accent-soft), transparent 70%), var(--surface); }
.stat--danger .stat__value { color: var(--danger); }
.stat--success .stat__value { color: var(--success); }

/* =========================================================================
   Tablolar
   ========================================================================= */

.table-wrap { overflow-x: auto; margin: 0 -20px -20px; padding: 0 20px 4px; }

table.table { width: 100%; border-collapse: collapse; font-size: 13.5px; }

.table th {
    text-align: left;
    font-weight: 500;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    padding: 9px 12px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}
.table td {
    padding: 11px 12px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}
.table tbody tr:last-child td { border-bottom: none; }
.table tbody tr:hover { background: var(--surface-2); }
.table .num { text-align: right; font-variant-numeric: tabular-nums; }
.table .nowrap { white-space: nowrap; }

.truncate { max-width: 260px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: inline-block; vertical-align: bottom; }

.empty {
    text-align: center;
    padding: 44px 20px;
    color: var(--text-dim);
}
.empty__icon { font-size: 26px; opacity: 0.5; margin-bottom: 8px; }

/* =========================================================================
   Rozetler
   ========================================================================= */

.badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 2px 9px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 550;
    white-space: nowrap;
    background: var(--surface-2);
    color: var(--text-muted);
    border: 1px solid var(--border);
}
.badge--success { background: var(--success-soft); color: var(--success); border-color: transparent; }
.badge--warning { background: var(--warning-soft); color: var(--warning); border-color: transparent; }
.badge--danger  { background: var(--danger-soft);  color: var(--danger);  border-color: transparent; }
.badge--info    { background: var(--info-soft);    color: var(--info);    border-color: transparent; }
.badge--accent  { background: var(--accent-soft);  color: var(--accent-hover); border-color: transparent; }

.dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* =========================================================================
   Butonlar
   ========================================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid var(--border-strong);
    background: var(--surface-2);
    color: var(--text);
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.12s ease, border-color 0.12s ease, opacity 0.12s ease;
    white-space: nowrap;
}
.btn:hover { background: var(--surface-hover); border-color: var(--text-dim); color: var(--text); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

.btn--primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.btn--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #fff; }

.btn--danger { background: transparent; border-color: rgba(242, 104, 107, 0.4); color: var(--danger); }
.btn--danger:hover { background: var(--danger-soft); border-color: var(--danger); color: var(--danger); }

.btn--ghost { background: transparent; border-color: transparent; color: var(--text-muted); }
.btn--ghost:hover { background: var(--surface-2); color: var(--text); }

.btn--sm { padding: 5px 10px; font-size: 12.5px; border-radius: 7px; }
.btn--block { width: 100%; }

.btn-row { display: flex; gap: 8px; flex-wrap: wrap; }

/* =========================================================================
   Form ogeleri
   ========================================================================= */

.field { margin-bottom: 15px; }
.field:last-child { margin-bottom: 0; }

.label {
    display: block;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.label__req { color: var(--danger); }

.input, .select, .textarea {
    width: 100%;
    padding: 9px 12px;
    background: var(--bg-elev);
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.12s ease, box-shadow 0.12s ease;
}
.input:focus, .select:focus, .textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.input::placeholder { color: var(--text-dim); }
.textarea { resize: vertical; min-height: 74px; }

.select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238d9bb0' d='M6 8.2 1.8 4h8.4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.hint { font-size: 12px; color: var(--text-dim); margin-top: 5px; }

.check { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 13.5px; }
.check input { width: 15px; height: 15px; accent-color: var(--accent); cursor: pointer; }

.form-row { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Secenek kartlari - teslimat sekli gibi birbirini dislayan secimler */
.modes { display: grid; gap: 8px; }

.mode {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 11px 13px;
    background: var(--bg-elev);
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.12s ease, background 0.12s ease;
}
.mode:hover { border-color: var(--border-strong); background: var(--surface-2); }
.mode input { margin-top: 2px; width: 15px; height: 15px; accent-color: var(--accent); cursor: pointer; flex: none; }
.mode:has(input:checked) { border-color: var(--accent-line); background: var(--accent-soft); }
.mode:has(input:focus-visible) { box-shadow: 0 0 0 3px var(--accent-soft); }

.mode__text { display: block; }
.mode__title { display: block; font-size: 13.5px; font-weight: 550; }
.mode__desc { display: block; font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* Kisayol tusu seridi - "tumu / temizle / kategoriye gore" */
.shortcuts { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.shortcuts__label { font-size: 12px; color: var(--text-dim); margin-right: 2px; }
.shortcuts__sep {
    width: 1px; height: 18px; background: var(--border-strong); margin: 0 4px;
}

/* Isaretlemeli servis listesi */
.picker {
    max-height: 420px;
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-elev);
}
.picker__group + .picker__group { border-top: 1px solid var(--border); }
.picker__head {
    position: sticky; top: 0; z-index: 1;
    padding: 7px 13px;
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
    font-size: 11.5px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--text-muted);
}
.picker__item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 13px;
    cursor: pointer;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
}
.picker__group > .picker__item:last-child { border-bottom: none; }
.picker__item:hover { background: var(--surface-hover); }
.picker__item input { width: 15px; height: 15px; accent-color: var(--accent); cursor: pointer; flex: none; }
.picker__name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.picker__price { color: var(--text-muted); font-size: 12px; flex: none; }

/* Hesaplanmis teslimat plani ozeti */
.plan {
    padding: 10px 13px;
    border-radius: 8px;
    font-size: 12.5px;
    line-height: 1.6;
    background: var(--info-soft);
    border: 1px solid transparent;
    color: var(--text);
}
.plan--error { background: var(--danger-soft); color: var(--danger); }

.filter-bar {
    display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
    margin-bottom: 16px;
}
.filter-bar .input, .filter-bar .select { width: auto; min-width: 190px; }

.tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.tab {
    padding: 5px 12px;
    border-radius: 7px;
    font-size: 13px;
    color: var(--text-muted);
    border: 1px solid transparent;
}
.tab:hover { background: var(--surface-2); color: var(--text); }
.tab.is-active { background: var(--accent-soft); color: var(--accent-hover); border-color: var(--accent-line); }

/* =========================================================================
   Uyari kutulari
   ========================================================================= */

.alert {
    display: flex;
    gap: 11px;
    padding: 12px 15px;
    border-radius: var(--radius);
    font-size: 13.5px;
    margin-bottom: 14px;
    border: 1px solid transparent;
    align-items: flex-start;
}
.alert__icon { flex-shrink: 0; line-height: 1.4; }
.alert--success { background: var(--success-soft); color: var(--success); border-color: rgba(62, 207, 142, 0.25); }
.alert--error   { background: var(--danger-soft);  color: var(--danger);  border-color: rgba(242, 104, 107, 0.25); }
.alert--warning { background: var(--warning-soft); color: var(--warning); border-color: rgba(240, 180, 41, 0.25); }
.alert--info    { background: var(--info-soft);    color: var(--info);    border-color: rgba(90, 169, 245, 0.25); }

/* =========================================================================
   Giris ekrani
   ========================================================================= */

.auth {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(900px 500px at 50% -10%, rgba(109, 124, 255, 0.10), transparent 65%),
        var(--bg);
}

.auth__card {
    width: 100%;
    max-width: 396px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 30px;
}

.auth__brand { text-align: center; margin-bottom: 26px; }
.auth__mark {
    width: 46px; height: 46px;
    border-radius: 13px;
    background: linear-gradient(140deg, var(--accent), #4f5ce0);
    display: grid; place-items: center;
    font-weight: 700; font-size: 19px; color: #fff;
    margin: 0 auto 14px;
}
.auth__title { font-size: 1.22rem; font-weight: 600; }
.auth__sub { color: var(--text-muted); font-size: 13.5px; margin-top: 4px; }
.auth__foot { text-align: center; margin-top: 20px; font-size: 12.5px; color: var(--text-dim); }

/* =========================================================================
   Servis listesi (kullanici)
   ========================================================================= */

.service-group { margin-bottom: 26px; }
.service-group__title {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}
.service-group__count { font-size: 12px; color: var(--text-dim); font-weight: 400; }

.service-list { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); }

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 15px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.12s ease, background 0.12s ease;
}
.service-card:hover { border-color: var(--border-strong); background: var(--surface-2); }
.service-card__name { font-weight: 550; font-size: 14px; line-height: 1.35; }
.service-card__desc { font-size: 12.5px; color: var(--text-muted); }
.service-card__meta {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px; margin-top: auto; padding-top: 4px;
}
.service-card__price { font-size: 13px; }
.service-card__price b { font-variant-numeric: tabular-nums; }
.service-card__limits { font-size: 12px; color: var(--text-dim); }

/* Fiyat ozeti kutusu (siparis formu) */
.quote {
    background: linear-gradient(160deg, var(--accent-soft), transparent 75%), var(--surface-2);
    border: 1px solid var(--accent-line);
    border-radius: var(--radius);
    padding: 15px 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.quote__label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.quote__value { font-size: 1.5rem; font-weight: 650; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.quote__after { font-size: 12.5px; color: var(--text-muted); text-align: right; }

/* =========================================================================
   Cesitli
   ========================================================================= */

.mono { font-family: var(--mono); font-size: 12.5px; }
.muted { color: var(--text-muted); }
.dim { color: var(--text-dim); }
.small { font-size: 12.5px; }
.right { text-align: right; }
.center { text-align: center; }
.nums { font-variant-numeric: tabular-nums; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 18px; }
.mb-2 { margin-bottom: 18px; }
.flex { display: flex; align-items: center; gap: 10px; }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.flex-wrap { flex-wrap: wrap; }

.divider { height: 1px; background: var(--border); margin: 18px 0; border: none; }

.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }
.pagination a, .pagination span {
    padding: 6px 12px;
    border-radius: 7px;
    font-size: 13px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    background: var(--surface);
}
.pagination .is-current { background: var(--accent-soft); border-color: var(--accent-line); color: var(--accent-hover); }

.code-block {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-muted);
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-all;
    max-height: 220px;
}

details.row-editor > summary {
    cursor: pointer;
    list-style: none;
    color: var(--accent);
    font-size: 12.5px;
}
details.row-editor > summary::-webkit-details-marker { display: none; }
details.row-editor[open] > summary { color: var(--text-muted); }

.editor-panel {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 10px;
}

/* Teslimat ilerlemesi */
.progress {
    height: 6px;
    background: var(--surface-2);
    border-radius: 20px;
    overflow: hidden;
    min-width: 84px;
}
.progress__bar {
    height: 100%;
    background: var(--accent);
    border-radius: 20px;
    transition: width 0.3s ease;
}
.progress__bar--done    { background: var(--success); }
.progress__bar--partial { background: var(--warning); }
.progress__bar--idle    { background: var(--border-strong); }
.progress-label { font-size: 11.5px; color: var(--text-dim); margin-top: 4px; font-variant-numeric: tabular-nums; }

/* Siparis detay zaman cizelgesi */
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li {
    position: relative;
    padding: 0 0 16px 22px;
    border-left: 1px solid var(--border);
}
.timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline li::before {
    content: "";
    position: absolute; left: -4.5px; top: 5px;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--border-strong);
}
.timeline li.is-done::before   { background: var(--success); }
.timeline li.is-active::before { background: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.timeline li.is-fail::before   { background: var(--danger); }
.timeline__title { font-size: 13.5px; font-weight: 500; }
.timeline__meta { font-size: 12px; color: var(--text-dim); }

.kv { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; font-size: 13.5px; }
.kv dt { color: var(--text-muted); }
.kv dd { margin: 0; text-align: right; font-variant-numeric: tabular-nums; }

.cost-note {
    font-size: 12px;
    color: var(--text-dim);
    background: var(--surface-2);
    border-left: 2px solid var(--border-strong);
    padding: 6px 10px;
    border-radius: 0 6px 6px 0;
}

/* =========================================================================
   Duyarli
   ========================================================================= */

@media (max-width: 1100px) {
    .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid--sidebarish { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 860px) {
    .shell { flex-direction: column; }
    .sidebar {
        width: 100%; flex: none; height: auto; position: relative;
        border-right: none; border-bottom: 1px solid var(--border);
    }
    .sidebar__nav { display: flex; flex-wrap: wrap; gap: 4px; padding: 10px; }
    .sidebar__label { display: none; }
    .nav-item { margin: 0; }
    .nav-item.is-active::before { display: none; }
    .sidebar__foot { display: none; }
    .content, .topbar { padding-left: 16px; padding-right: 16px; }
    .grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0, 1fr); }
    .form-row, .form-row--3 { grid-template-columns: minmax(0, 1fr); }
    .truncate { max-width: 150px; }
}

/* Hizmet detaylari - baslangic suresi / hiz / telafi rozetleri */
.service-card__specs {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin: 8px 0 0;
}
.spec {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    font-size: 11.5px;
    color: var(--text-muted);
    white-space: nowrap;
}
.spec__icon { font-size: 11px; opacity: 0.85; }
