/* ── Fonts ───────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ── Reset & Variables ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; font-family: inherit; }

:root {
  --bg:        #0f1117;
  --bg2:       #1a1d27;
  --bg3:       #23273a;
  --border:    #2e3347;
  --accent:    #6c63ff;
  --accent2:   #a78bfa;
  --green:     #22c55e;
  --yellow:    #eab308;
  --red:       #ef4444;
  --blue:      #3b82f6;
  --text:      #e2e8f0;
  --text2:     #94a3b8;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(0,0,0,.45);
  color-scheme: dark;
}

/* ── LIGHT TEMA ─────────────────────────────────────────────── */
[data-theme="light"] {
  --bg:        #f4f5fb;
  --bg2:       #ffffff;
  --bg3:       #edf0f8;
  --border:    #d0d4e8;
  --accent:    #6c63ff;
  --accent2:   #5b21b6;
  --green:     #15803d;
  --yellow:    #92400e;
  --red:       #b91c1c;
  --blue:      #1d4ed8;
  --text:      #0f0d1a;
  --text2:     #64748b;
  --shadow:    0 4px 24px rgba(108,99,255,.10);
  color-scheme: light;
}

body {
  font-family: 'Montserrat', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 14px;
  line-height: 1.5;
}

/* Vurgulu yazılar — Montserrat Bold */
h1, h2, h3, h4, h5, h6,
th, strong, b,
.btn, .badge,
label { font-weight: 700; }

/* ── LOGIN ──────────────────────────────────────────────────── */
.login-page {
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

/* #app flex wrapper — login sayfasında paneller yan yana sığsın */
.login-page #app {
  display: flex;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Sol panel — marka alanı */
.login-panel-left {
  flex: 0 0 56%;
  position: relative;
  background: #08090e;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 52px 60px;
  height: 100%;
}

/* Dokuma ızgara deseni */
.login-panel-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,   transparent, transparent 32px, rgba(108,99,255,.045) 32px, rgba(108,99,255,.045) 33px),
    repeating-linear-gradient(90deg,  transparent, transparent 32px, rgba(108,99,255,.045) 32px, rgba(108,99,255,.045) 33px);
  animation: nt-weave 28s linear infinite;
  pointer-events: none;
}

/* Işık halesi */
.login-panel-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 25% 45%, rgba(108,99,255,.20) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 75%, rgba(167,139,250,.12) 0%, transparent 55%);
  pointer-events: none;
}

@keyframes nt-weave {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 33px 33px, 33px 33px; }
}

/* Marka metni */
.login-brand { position: relative; z-index: 1; }

.login-brand-title {
  font-family: 'Bebas Neue', 'Montserrat', sans-serif;
  font-size: clamp(5.5rem, 9vw, 9.5rem);
  font-weight: 400;
  line-height: .88;
  color: #fff;
  letter-spacing: -.01em;
  margin: 0;
}

.login-brand-sub {
  font-family: 'Bebas Neue', 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  font-weight: 400;
  color: var(--accent2);
  letter-spacing: .22em;
  margin: 0;
}

.login-brand-line {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
  margin: 22px 0;
}

.login-brand-tag {
  font-size: .72rem;
  color: rgba(148,163,184,.45);
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Dekoratif yıl rakamı */
.login-year {
  font-family: 'Bebas Neue', monospace;
  font-size: 22rem;
  line-height: 1;
  color: rgba(108,99,255,.055);
  position: absolute;
  bottom: -3rem;
  right: -1.5rem;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.login-panel-footer {
  position: relative;
  z-index: 1;
  font-size: .68rem;
  color: rgba(148,163,184,.28);
  letter-spacing: .06em;
}

/* Sağ panel — form alanı */
.login-panel-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle, rgba(108,99,255,.12) 1px, transparent 1px),
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(108,99,255,.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(167,139,250,.05) 0%, transparent 55%),
    var(--bg);
  background-size: 28px 28px, 100% 100%, 100% 100%, 100% 100%;
  padding: 48px 40px;
  position: relative;
  height: 100%;
  overflow-y: auto;
}

/* Sol kenardaki ışık çizgisi */
.login-panel-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, var(--accent) 35%, var(--accent2) 65%, transparent 100%);
  opacity: .3;
}

/* Dekoratif köşe halkası */
.login-panel-right::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(108,99,255,.08);
  box-shadow: 0 0 0 40px rgba(108,99,255,.04), 0 0 0 80px rgba(108,99,255,.025);
  pointer-events: none;
}

[data-theme="light"] .login-panel-left  { background: #0f1117; }
[data-theme="light"] .login-panel-right {
  background:
    radial-gradient(circle, rgba(108,99,255,.1) 1px, transparent 1px),
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(108,99,255,.09) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(167,139,250,.07) 0%, transparent 55%),
    #eeeef8;
  background-size: 28px 28px, 100% 100%, 100% 100%, 100% 100%;
}

.login-wrap { width: 100%; max-width: 340px; }

.login-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(108,99,255,.18);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
}

[data-theme="light"] .login-box {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(108,99,255,.18);
  box-shadow: 0 8px 40px rgba(108,99,255,.13), 0 1px 0 rgba(255,255,255,.9);
}

.login-logo        { margin-bottom: 28px; display: flex; justify-content: center; }
.login-logo-img    {
  width: 72px; height: 72px;
  object-fit: contain;
  padding: 12px;
  background: rgba(255,255,255,.15);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
}
[data-theme="light"] .login-logo-img {
  filter: brightness(0);
  background: rgba(79,70,229,.08);
  border-color: rgba(79,70,229,.15);
}
.login-title       { font-size: 1.55rem; font-weight: 800; letter-spacing: -.03em; color: var(--text); margin-bottom: 6px; }
.login-sub         { font-size: .8rem; color: var(--text2); margin-bottom: 36px; letter-spacing: .02em; }

/* Geliştirilmiş input stili */
.login-box .form-group label {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text2);
  margin-bottom: 8px;
  font-weight: 700;
}

.login-box .form-group input {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 15px;
  font-size: .9rem;
  color: var(--text);
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  font-family: 'Montserrat', sans-serif;
}

.login-box .form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(108,99,255,.14);
}

.login-box .form-group input::placeholder { color: rgba(148,163,184,.3); }

/* Giriş animasyonları */
@keyframes nt-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes nt-slide-in {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.login-brand         { animation: nt-slide-in .7s cubic-bezier(.22,1,.36,1) both .05s; opacity: 0; }
.login-brand-line    { animation: nt-slide-in .7s cubic-bezier(.22,1,.36,1) both .15s; opacity: 0; }
.login-box .login-logo   { animation: nt-fade-up .5s ease forwards .12s; }
.login-box .login-title  { animation: nt-fade-up .5s ease both .2s;  opacity: 0; }
.login-box .login-sub    { animation: nt-fade-up .5s ease both .27s; opacity: 0; }
.login-box .form-group   { animation: nt-fade-up .5s ease both .34s; opacity: 0; }
.login-box .form-group + .form-group { animation-delay: .41s; }
.login-box .btn-primary  { animation: nt-fade-up .5s ease both .5s;  opacity: 0; }

/* Mobil — sol panel gizlenir */
@media (max-width: 768px) {
  .login-panel-left  { display: none; }
  .login-panel-right { flex: 1; padding: 32px 24px; }
  .login-panel-right::before { display: none; }
  .login-wrap { max-width: 100%; }
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.app-layout { display: flex; min-height: 100vh; }

.sidebar {
  width: 220px;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 10;
}
.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 18px 24px;
  border-bottom: 1px solid var(--border);
}
.sidebar-logo-icon { font-size: 1.5rem; }
.sidebar-logo-img  { width: 36px; height: 36px; object-fit: contain; }
.sidebar-logo-text { font-size: .82rem; font-weight: 700; color: var(--accent2); letter-spacing: .3px; }

.sidebar-role {
  padding: 10px 18px;
  font-size: .75rem;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 1px solid var(--border);
}

nav { padding: 12px 0; flex: 1; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  color: var(--text2);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  border-left: 3px solid transparent;
  transition: background .12s, color .12s;
}
.nav-link:hover { background: var(--bg3); color: var(--text); }
.nav-link.active { background: var(--bg3); color: var(--text); border-left-color: var(--accent); }
.nav-icon { font-size: 1rem; width: 18px; text-align: center; }

.sidebar-footer {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
}
.sidebar-user { font-size: .8rem; color: var(--text2); margin-bottom: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.btn-logout { width: 100%; }

.main-wrap { margin-left: 220px; flex: 1; display: flex; flex-direction: column; min-height: 100vh; }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 5;
}
.topbar-title { font-size: 1.05rem; font-weight: 600; }
.topbar-right { display: flex; align-items: center; gap: 10px; color: var(--text2); font-size: .82rem; }

.page-content { padding: 24px; flex: 1; }

/* ── CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.card + .card { margin-top: 16px; }
.card-title { font-size: .95rem; font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; }

/* ── TOOLBAR ────────────────────────────────────────────────── */
.toolbar { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.search-input {
  flex: 1; min-width: 180px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 8px 12px;
  color: var(--text);
  font-size: .88rem;
  outline: none;
}
.search-input:focus { border-color: var(--accent); }
select.filter-select {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 8px 10px;
  color: var(--text);
  font-size: .88rem;
  cursor: pointer;
  outline: none;
}
select.filter-select:focus { border-color: var(--accent); }

/* ── TABLE ──────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .88rem; }
thead th {
  text-align: left;
  padding: 9px 12px;
  color: var(--text2);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
tbody tr { border-bottom: 1px solid var(--border); transition: background .1s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--bg3); }
tbody td { padding: 10px 12px; vertical-align: middle; }

/* ── BADGES ─────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
  white-space: nowrap;
}
.badge-green  { background: rgba(34,197,94,.15);  color: var(--green); }
.badge-yellow { background: rgba(234,179,8,.15);  color: var(--yellow); }
.badge-red    { background: rgba(239,68,68,.15);  color: var(--red); }
.badge-blue   { background: rgba(59,130,246,.15); color: var(--blue); }
.badge-gray   { background: rgba(148,163,184,.12);color: var(--text2); }
.badge-acil   { background: rgba(239,68,68,.25);  color: #fca5a5; font-weight: 700; }

@keyframes stokEksikPulse {
  0%   { transform: scale(1);    background: rgba(239,68,68,.18); box-shadow: 0 0 0 0 rgba(239,68,68,.6); }
  40%  { transform: scale(1.18); background: rgba(239,68,68,.45); box-shadow: 0 0 0 7px rgba(239,68,68,0); }
  70%  { transform: scale(0.95); background: rgba(239,68,68,.25); }
  100% { transform: scale(1);    background: rgba(239,68,68,.18); box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}
.badge-stok-eksik-pulse {
  animation: stokEksikPulse 1.4s ease-in-out infinite;
  font-weight: 800;
  letter-spacing: .03em;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 16px;
  border: none; border-radius: 7px;
  font-size: .875rem; font-weight: 500; cursor: pointer;
  transition: opacity .15s, transform .1s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover   { opacity: .85; transform: translateY(-1px); }
.btn:active  { transform: translateY(0); }
.btn-primary { background: var(--accent);  color: #fff; }
.btn-success { background: var(--green);   color: #fff; }
.btn-danger  { background: var(--red);     color: #fff; }
.btn-warning { background: var(--yellow);  color: #000; }
.btn-ghost   { background: var(--bg3); color: var(--text2); border: 1px solid var(--border); }
.btn-block   { width: 100%; justify-content: center; padding: 11px 16px; font-size: .95rem; }
.btn-sm      { padding: 5px 10px; font-size: .78rem; }
.btn-icon    { background: transparent; border: none; cursor: pointer; color: var(--text2); font-size: .95rem; padding: 4px 7px; border-radius: 5px; }
.btn-icon:hover { background: var(--bg3); color: var(--text); }

/* ── FORMS ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; color: var(--text2); font-size: .8rem; margin-bottom: 5px; }
.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 9px 12px;
  color: var(--text);
  font-size: .9rem;
  outline: none;
  font-family: inherit;
}
.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group small { display: block; margin-top: 4px; color: var(--text2); font-size: .75rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 20px; }
.required { color: var(--red); }

.radio-group { display: flex; gap: 20px; flex-wrap: wrap; }
.radio-label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: .88rem; }
.radio-label input { width: auto; cursor: pointer; }

/* ── ALERTS ─────────────────────────────────────────────────── */
.alert { padding: 10px 14px; border-radius: 7px; font-size: .875rem; margin-bottom: 12px; }
.alert-err  { background: rgba(239,68,68,.15);  color: #fca5a5; border: 1px solid rgba(239,68,68,.3); }
.alert-ok   { background: rgba(34,197,94,.15);  color: #86efac; border: 1px solid rgba(34,197,94,.3); }
.alert-info { background: rgba(59,130,246,.15); color: #93c5fd; border: 1px solid rgba(59,130,246,.3); }
.alert-warn { background: rgba(234,179,8,.15);  color: #fde68a; border: 1px solid rgba(234,179,8,.3); }

/* ── MODAL ──────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.modal-overlay.hidden { display: none; }
.modal {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 100%; max-width: 500px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow);
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.modal-header h2 { font-size: .98rem; font-weight: 600; }
.modal-body { padding: 20px; }

/* ── INFO BOX ───────────────────────────────────────────────── */
.info-box {
  background: rgba(59,130,246,.08);
  border-left: 4px solid var(--blue);
  border-radius: 0 7px 7px 0;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.info-box p { margin-bottom: 4px; font-size: .875rem; }
.info-box p:last-child { margin-bottom: 0; }

.warn-box {
  background: rgba(234,179,8,.08);
  border-left: 4px solid var(--yellow);
  border-radius: 0 7px 7px 0;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: .875rem;
}

/* ── EMPTY STATE ────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 50px 20px; color: var(--text2); }
.empty-icon  { font-size: 2.5rem; margin-bottom: 10px; }

/* ── TOAST ──────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; right: 24px;
  padding: 11px 18px;
  border-radius: 8px;
  font-size: .875rem;
  z-index: 200;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .2s, transform .2s;
  box-shadow: var(--shadow);
  pointer-events: none;
  max-width: 320px;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast-success { background: var(--green);  color: #fff; }
.toast-error   { background: var(--red);    color: #fff; }
.toast-info    { background: var(--blue);   color: #fff; }

/* ── ANLIK BİLDİRİM PANELİ ─────────────────────────────────── */
.nt-bildirim {
  position: fixed;
  top: 20px; /* JS tarafından dinamik olarak güncellenir */
  right: 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg2);
  border: 1px solid var(--accent);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 14px 14px 14px 14px;
  min-width: 300px;
  max-width: 380px;
  box-shadow: 0 8px 32px rgba(108,99,255,.35);
  z-index: 9999;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: all;
}
.nt-bildirim.show { opacity: 1; transform: translateX(0); }
.nt-bildirim.hide { opacity: 0; transform: translateX(40px); }


.nt-b-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.nt-b-icerik { flex: 1; min-width: 0; }
.nt-b-baslik {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.nt-b-mesaj {
  font-size: .78rem;
  color: var(--text2);
  line-height: 1.4;
}
.nt-b-kapat {
  background: none;
  border: none;
  color: var(--text2);
  cursor: pointer;
  font-size: .8rem;
  padding: 0 2px;
  flex-shrink: 0;
  line-height: 1;
  transition: color .15s;
}
.nt-b-kapat:hover { color: var(--text); }

/* ── TEMA GEÇİŞ ANİMASYONU ─────────────────────────────────── */
.tema-gecis, .tema-gecis * {
  transition: background-color .22s ease, border-color .22s ease,
              color .18s ease, box-shadow .22s ease !important;
}

/* ── TEMA TOGGLE BUTONU ─────────────────────────────────────── */
.tema-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  margin-bottom: 8px;
  padding: 7px 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--text2);
  font-size: .8rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}
.tema-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ── LIGHT TEMA — ALERT RENKLERİ ────────────────────────────── */
[data-theme="light"] .alert-err  { background: rgba(185,28,28,.09);  color: #7f1d1d; border-color: rgba(185,28,28,.25); }
[data-theme="light"] .alert-ok   { background: rgba(21,128,61,.09);  color: #14532d; border-color: rgba(21,128,61,.25); }
[data-theme="light"] .alert-info { background: rgba(29,78,216,.09);  color: #1e3a8a; border-color: rgba(29,78,216,.25); }
[data-theme="light"] .alert-warn { background: rgba(146,64,14,.09);  color: #78350f; border-color: rgba(146,64,14,.25); }

/* ── LIGHT TEMA — BADGE RENKLERİ ────────────────────────────── */
[data-theme="light"] .badge-acil { background: rgba(185,28,28,.12); color: #7f1d1d; }

/* ── LIGHT TEMA — DATE INPUT ────────────────────────────────── */
[data-theme="light"] input[type="date"],
[data-theme="light"] input[type="time"],
[data-theme="light"] input[type="datetime-local"] { color-scheme: light !important; }

/* ── LIGHT TEMA — MODAL OVERLAY ─────────────────────────────── */
[data-theme="light"] .modal-overlay { background: rgba(15,13,26,.4); }

/* ── LIGHT TEMA — NAV BİLDİRİM BADGE ───────────────────────── */
[data-theme="light"] .nt-bildirim {
  box-shadow: 0 8px 32px rgba(108,99,255,.18);
}

/* ── RESPONSIVE — Detaylar mobile.css'de ────────────────────── */
/* Masaüstü için sidebar düzeni korunur. Mobil override'lar mobile.css'de. */
