/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #f8f9fc;
  --surface:  #ffffff;
  --border:   #e5e8ef;
  --text:     #1a1d27;
  --muted:    #6b7280;
  --accent:   #2563eb;
  --radius:   14px;
  --shadow:   0 2px 16px rgba(0,0,0,.07);
  --shadow-h: 0 6px 28px rgba(0,0,0,.13);
  --font-head:'Nunito', sans-serif;
  --font-body:'Inter', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

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

/* ── Container ───────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ── Header ──────────────────────────────────────────── */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.header-inner {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.25rem;
  color: var(--text); text-decoration: none;
}
.logo-icon { font-size: 1.5rem; }
.header-title h1 {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; line-height: 1.2;
}
.header-title p { font-size: .82rem; color: var(--muted); }

/* ── Main ────────────────────────────────────────────── */
.main { padding: 36px 0 60px; }

/* ── Hero Banner ─────────────────────────────────────── */
.hero-banner {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-bottom: 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.hero-text h2 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.hero-text p  { opacity: .9; font-size: .95rem; }
.hero-badge {
  background: rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 12px 20px;
  text-align: center;
  min-width: 70px;
  flex-shrink: 0;
}
.hero-badge span { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.hero-badge small { font-size: .75rem; opacity: .85; }

/* ── Cards Grid ──────────────────────────────────────── */
.cards-grid {
  display: grid;
  /* 420px minimum → ~864px ekrandan itibaren 2 sütun (link kartlar yan yana) */
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 24px;
}
@media (max-width: 600px) {
  .cards-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Tutanak kartı tam genişlik kaplar */
.evrak-card--wide {
  grid-column: 1 / -1;
}

/* ── Evrak Card ──────────────────────────────────────── */
.evrak-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.evrak-card:hover {
  box-shadow: var(--shadow-h);
  transform: translateY(-2px);
}

/* ── Card Header ─────────────────────────────────────── */
.card-header {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 22px 16px;
  border-left: 4px solid var(--accent, #2563eb);
}
.card-ikon { font-size: 2rem; line-height: 1; flex-shrink: 0; }
.card-baslik { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.card-aciklama { font-size: .83rem; color: var(--muted); }

/* ── Card Body ───────────────────────────────────────── */
.card-body { padding: 0 22px 20px; }

/* ── Form (genel kartlar) ────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--muted); }
.form-group label .zorunlu { color: #ef4444; margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 8px 11px;
  font-size: .88rem;
  font-family: var(--font-body);
  color: var(--text);
  width: 100%;
  transition: border-color .15s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
@media (max-width: 520px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: 1; }
}

/* ── Card Actions ────────────────────────────────────── */
.card-actions {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.download-btns { display: flex; gap: 8px; flex: 1; flex-wrap: wrap; }

/* ── Buttons (paylaşılan) ────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  border: none; border-radius: 9px; cursor: pointer;
  font-family: var(--font-body); font-size: .84rem; font-weight: 600;
  padding: 9px 16px; transition: all .18s; text-decoration: none;
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

.btn-word  { background: #2563eb; color: #fff; }
.btn-word:hover  { background: #1d4ed8; }

.btn-pdf   { background: #dc2626; color: #fff; }
.btn-pdf:hover   { background: #b91c1c; }

.btn-link-ext {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #fff; font-size: .9rem; padding: 11px 22px; margin-right: auto;
}
.btn-link-ext:hover { opacity: .9; text-decoration: none; }

/* ── Beğeni (kalp) butonu ─────────────────────────────────
   SVG ikon kullanılır (Bootstrap Icons heart-fill path) — mobilde
   Unicode ♥ emoji'ye dönüşüyordu, tutarsız görünüm yaratıyordu. */
.btn-like {
  background: #fff5f5;
  color: #e11d48;
  border: 1.5px solid #fecdd3;
  padding: 9px 14px;
  margin-left: auto;
  /* İçerikleri (kalp + sayı) butonun ORTASINA hizala */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background .15s, color .15s, border-color .15s;
}
.btn-like .heart {
  width: 16px;
  height: 16px;
  display: block;
  line-height: 0;
  flex-shrink: 0;
}
/* Aktif (beğenilmiş) durum — dolgu var */
.btn-like.liked {
  background: #e11d48;
  color: #fff;
  border-color: #e11d48;
}
/* Hover SADECE fare olan cihazlarda — mobilde "sticky hover" sorunu olmasın.
   Mobilde butona basıp beğeniyi geri aldığında buton beyaza dönmüyordu çünkü
   :hover stili dokunmadan sonra takılı kalıyordu. */
@media (hover: hover) and (pointer: fine) {
  .btn-like:hover {
    background: #e11d48;
    color: #fff;
    border-color: #e11d48;
  }
}
.btn-like.popping { animation: pop .28s ease; }
@keyframes pop { 0%{transform:scale(1)} 50%{transform:scale(1.35)} 100%{transform:scale(1)} }

/* ── Sayaç rozetleri ─────────────────────────────────── */
.dl-count, .like-count {
  background: rgba(255,255,255,.28);
  border-radius: 20px; font-size: .72rem;
  padding: 1px 6px; min-width: 20px; text-align: center;
}
.dl-count:empty, .like-count:empty { display: none; }

/* ── Link kart body ──────────────────────────────────── */
.card-body-link { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────
   TUTANAK KART — özel stiller
───────────────────────────────────────────────────── */
.tutanak-body { padding: 0 22px 22px; }

.tut-section-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: #003ec5; margin-bottom: 10px;
}

/* Genel bilgiler grid */
.tut-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 14px;
  margin-bottom: 16px;
}
.tut-meta-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) {
  .tut-meta-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .tut-meta-grid { grid-template-columns: 1fr; }
  .tut-meta-grid .full { grid-column: 1; }
}

.tut-field { display: flex; flex-direction: column; gap: 4px; }
.tut-field label {
  font-size: 12px; color: #e11d48; font-weight: 500;
}
.tut-field input,
.tut-field select {
  font-size: 13px; padding: 6px 9px;
  border-radius: 6px; border: 1px solid var(--border);
  background: var(--bg); color: var(--text); width: 100%;
  font-family: var(--font-body); transition: border-color .15s;
}
.tut-field input:focus,
.tut-field select:focus {
  outline: none; border-color: var(--accent); background: #fff;
}

.tut-divider {
  border: none; border-top: 1px solid var(--border); margin: 14px 0;
}

/* Tablo wrapper */
.tut-table-wrap {
  overflow-x: auto;
  margin-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}
/* Mobilde scroll olduğunu görsel ipucu ile bildir */
@media (max-width: 600px) {
  .tut-table-wrap {
    background: linear-gradient(to right, transparent 70%, rgba(0,0,0,.04));
    background-attachment: local;
  }
}

/* Tablo */
.tut-tablo {
  border-collapse: collapse;
  font-size: 13px;
  width: 100%;
}
.tut-tablo th,
.tut-tablo td {
  border: 1px solid var(--border);
  padding: 0;
  vertical-align: middle;
}
.tut-tablo th {
  background: var(--bg);
  font-weight: 600; font-size: 12px;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: .04em; text-align: center; white-space: nowrap;
}
.tut-tablo th.th-pasif { background: #f1f3f8; }

.tut-th-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; padding: 7px 8px; white-space: nowrap;
}

/* Sabit sütun genişlikleri */
.tut-col-no     { width: 34px; }
.tut-col-sinif  { width: 90px; }
.tut-col-donem  { width: 82px; }
.tut-col-toplam { width: 70px; }
.tut-col-sil    { width: 30px; }


/* Tablo minimum genişliği — mobilde scroll devreye girer, ders sütunu daralmaz */
.tut-tablo { min-width: 560px; }
/* Ders sütunundaki input/içerik minimum genişlik */
.tut-tablo td .inp-ders, 
.tut-tablo th:nth-child(2) {
    min-width: 180px;
}

/* ───────────────────────────────────────────────────────────
   DK tablosu: Durum kolonu özel genişlik
   "Seçiniz" placeholder'ı + dropdown oku için minimum alan
   ─────────────────────────────────────────────────────────── */
.tut-tablo td .inp-dk-durum {
    min-width: 123px;        /* "Seçiniz" + ok ikonu için yeterli */
    padding-right: 22px;      /* Native dropdown oku için sağda yer */
    padding-left: 6px;
    background-position: right 4px center;
    appearance: auto;         /* Browser native dropdown'ı koru */
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
}

.tut-tablo td.tut-td {
    height: 48px !important; /* İstediğiniz yüksekliği verin */
    padding: 0 6px !important; /* Dikey padding'i sıfırlayıp height ile kontrol edin */
}
.tut-tablo td.tut-td-pasif { background: #f1f3f8; }

.tut-tablo td input {
  width: 100%;
  background: transparent;
  font-size: 13px;
  color: var(--text);
  padding: 6px 4px;
  font-family: var(--font-body);
  border: 1px solid #ccc;
  border-left: 2px solid #1cb344c9;
}
.tut-tablo td input.inp-ders { text-align: left; }
.tut-tablo td input.inp-sayi { text-align: center; }
.tut-tablo td input:focus {
  outline: 2px solid var(--accent); border-radius: 4px; background: #fff;
}

/* Toplam satırı */
.tut-tablo .tut-toplam-row td {
  background: var(--bg); font-weight: 600; font-size: 12px;
  color: var(--text); padding: 6px 8px; text-align: center;
}
.tut-toplam-val  { color: var(--accent); font-weight: 700; }
.tut-toplam-pasif { color: #bbb; font-size: 11px; }

/* Dönem header butonları */
.tut-btn-sil-donem {
  background: none; border: none; cursor: pointer;
  font-size: 13px; line-height: 1; color: #bbb;
  padding: 1px 3px; border-radius: 3px; transition: color .15s; flex-shrink: 0;
}
.tut-btn-sil-donem:hover { color: #e11d48; }

.tut-btn-ekle-donem {
  background: none; border: 1px solid var(--accent);
  cursor: pointer; font-size: 11px; color: var(--accent);
  padding: 3px 7px; border-radius: 4px; transition: all .15s;
  white-space: nowrap; font-weight: 500;
}
.tut-btn-ekle-donem:hover { background: var(--accent); color: #fff; }

/* Satır ekle butonu */
.tut-btn-satir-ekle {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; padding: 6px 12px; border-radius: 6px;
  border: 1px solid var(--border); background: var(--bg);
  color: var(--muted); cursor: pointer; transition: background .15s;
  font-family: var(--font-body); margin-bottom: 0;
}
.tut-btn-satir-ekle:hover { background: #eef0f6; color: var(--text); }

/* Satır silme butonu — çöp kutusu SVG ikonu */
.tut-btn-sil-satir {
  background: none;
  border: none;
  cursor: pointer;
  color: #dc3545;            /* normal kırmızı */
  padding: 4px 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  transition: color .15s, background .15s;
  line-height: 0;            /* SVG'nin etrafındaki boş alan */
}
.tut-btn-sil-satir svg {
  width: 16px;
  height: 16px;
  display: block;
}
.tut-btn-sil-satir:hover {
  color: #a71d2a;            /* hover koyu kırmızı */
  background: rgba(220, 53, 69, 0.08);
}
.tut-btn-sil-satir:active {
  transform: scale(0.92);
}

/* Alt aksiyon butonları */
.tut-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.tut-actions .btn-like { margin-left: auto; }

/* ───────────────────────────────────────────────────────
   MOBİL & TABLET (≤768px): Word/PDF üst üste tam genişlik
   Kalp butonu en altta ORTALI — UI/UX: ana indirme eylemine vurgu,
   like butonu altta ortalı (sosyal etkileşim — yardımcı eylem).
   ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .tut-actions {
    flex-direction: column;
    align-items: stretch;     /* her buton tam genişlik */
    gap: 10px;
  }
  /* Word ve PDF butonu tam genişlik, içerikleri ortalı, dokunmaya rahat boyut */
  .tut-actions .btn-word,
  .tut-actions .btn-pdf {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 15px;          /* mobilde okunaklı */
  }
  /* Kalp butonu en altta, ORTALI — ana eylemden bağımsız, dengeli görünüm.
     Tam genişlik yapmıyoruz: kalp ana eylem değil, sosyal etkileşim.
     Sağa yaslamak ana butonların simetrisini bozardı. */
  .tut-actions .btn-like {
    align-self: center;        /* ortala */
    margin: 4px auto 0;        /* üstte küçük boşluk, yatay otomatik */
    padding: 10px 22px;
    font-size: 14px;
    min-width: 110px;
  }
}

/* Flash animasyonu */
.tut-flash { animation: tutFlash .4s ease; }
@keyframes tutFlash {
  0%   { background: rgba(37,99,235,.10); }
  100% { background: transparent; }
}

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 22px 0; text-align: center;
  font-size: .82rem; color: var(--muted);
}

/* ── Toast ───────────────────────────────────────────── */
#toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #1a1d27; color: #fff;
  padding: 11px 22px; border-radius: 40px;
  font-size: .85rem; font-weight: 600;
  opacity: 0; transition: all .3s; z-index: 9999;
  pointer-events: none; white-space: nowrap;
  /* Ekrandan taşmasın — uzun mesajlar için güvenlik */
  max-width: calc(100vw - 32px);
  box-sizing: border-box;
  text-align: center;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Mobilde uzun mesajlar tek satıra sığmaz — satır kaydır, köşeleri yumuşat */
@media (max-width: 640px) {
  #toast {
    white-space: normal;        /* satır kayabilsin */
    border-radius: 16px;         /* çok satırda pill yerine yuvarlak köşe */
    padding: 12px 18px;
    line-height: 1.4;
    max-width: calc(100vw - 24px);
    width: max-content;          /* içeriğe göre, ama max-width sınırlı */
  }
}

/* ── Loading spinner ─────────────────────────────────── */
.btn.loading {
  opacity: .85;
  pointer-events: none;
  cursor: wait;
}
.btn.loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  margin-left: 6px;
  vertical-align: middle;
}
/* İndirme butonu loading durumunda → sayacı gizle, spinner görünür kalsın */
.btn.loading .dl-count {
  display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Yazılı Kağıdı Teslim Tutanağı — ek stiller ───── */

/* Karakter limit etiketi */
.tut-kar-limit {
  font-size: 10px;
  color: #676e7b;
  font-weight: 400;
  margin-left: 4px;
}

/* Sınav Kağıdı Tablosu açıklaması — info kutusu tasarımı */
.tut-section-help {
  font-size: 13px;
  color: #1e3a8a;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-left: 4px solid #3b82f6;
  padding: 12px 14px 12px 42px;
  margin: 0 0 14px 0;
  border-radius: 6px;
  line-height: 1.6;
  position: relative;
}
.tut-section-help::before {
  content: 'ⓘ';
  position: absolute;
  left: 14px;
  top: 11px;
  font-size: 18px;
  color: #3b82f6;
  font-weight: 700;
  line-height: 1;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.tut-section-help strong { color: #0c1e4d; font-weight: 700; }
.tut-section-help em { font-style: italic; color: #1e40af; font-weight: 500; }

/* PDF tavsiye kutusu — butonların üstüne yapışık */
.tut-pdf-tavsiye {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  color: #78350f;
  padding: 10px 14px;
  border-radius: 6px 6px 0 0;
  font-size: 13px;
  line-height: 1.5;
  margin: 12px 0 0 0;
  border-bottom: none;
}
.tut-pdf-tavsiye-ikon {
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1.3;
}
.tut-pdf-tavsiye strong { font-weight: 700; }

/* Tavsiye kutusuna yapışık actions */
.tut-pdf-tavsiye + .tut-actions {
  margin-top: 0;
  padding-top: 12px;
  border-top: 1px dashed #fcd34d;
}

/* Tablo input alanları — kullanıcı yazması gerektiğini NET hissetsin */
.tut-tablo-input {
  height: 36px; /* Hücreden biraz küçük olsun */
    line-height: 36px; /* Metni dikeyde ortalar */
    display: block;
  width: 100%;
  font-size: 13px;
  color: var(--text);
  font-family: var(--font-body);
  background: #ffffff;
  border: 1.5px solid #9ca3af;
  border-radius: 5px;
  padding: 8px 4px;
  transition: border-color .15s, background .15s, box-shadow .15s;
  box-sizing: border-box;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.04);
}
.tut-tablo-input--text  { text-align: left; }
.tut-tablo-input--sinif { text-align: center; text-transform: uppercase; font-weight: 600; }
.tut-tablo-input--sayi  { text-align: center; font-weight: 600; }

.tut-tablo-input:hover {
  border-color: #4b5563;
  background: #f9fafb;
}
.tut-tablo-input:focus {
  outline: none;
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,.18), inset 0 1px 2px rgba(0,0,0,.04);
}
/* Boş input — sade gri kenar, dikkat dağıtmayan tasarım */
.tut-tablo-input:placeholder-shown {
  background: #f8f9fc;
  border: 1px solid #ccc;
  border-left: 2px solid #ccc;
}
.tut-tablo-input:placeholder-shown:hover {
  background: #fef3c7;
}
.tut-tablo-input::placeholder {
  color: #9ca3af;
  font-weight: 400;
  font-style: normal;
}

/* Sayı inputları için spinner gizleme (daha temiz görünüm) */
.tut-tablo-input--sayi::-webkit-outer-spin-button,
.tut-tablo-input--sayi::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.tut-tablo-input--sayi { -moz-appearance: textfield; }

/* Disabled inputlar (pasif dönem) */
.tut-tablo-input:disabled {
  background: #f3f4f6;
  border-color: #e5e7eb;
  border-style: solid;
  cursor: not-allowed;
  box-shadow: none;
}

/* Tablo hücreleri içinde input'a hafif padding */
.tut-tablo td.tut-td { padding: 5px 6px; }

/* Form alanı altındaki bilgi notu (Branş/Ders altı gibi) */
.tut-field-note {
  display: block;
  font-size: 11.5px;
  color: #6b7280;
  line-height: 1.5;
  margin-top: 4px;
  background: #f9fafb;
  border-left: 3px solid #cbd5e1;
  padding: 6px 9px;
  border-radius: 0 4px 4px 0;
}
.tut-field-note strong {
  color: #1f2937;
  font-weight: 600;
}

/* ── Ders Kesim Raporu — senkronizasyon bilgi kutusu ─────────── */
.dk-senkron-bilgi {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: linear-gradient(135deg, #f3e8ff 0%, #fae8ff 100%);
  border: 1px solid #d8b4fe;
  border-left: 4px solid #7c3aed;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.55;
  color: #581c87;
  margin: 0 0 18px 0;
}
.dk-senkron-ikon {
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.3;
}
.dk-senkron-bilgi strong { color: #4c1d95; font-weight: 700; }
.dk-senkron-bilgi em { font-style: italic; font-weight: 500; }

/* ── Dönem seçicide yanıp sönme uyarısı ──
   Yazılı Kağıdı'nda "1. ve 2. Dönem Birlikte" seçilince Ders Kesim'in
   dönem seçicisi bu sınıfla yanıp söner, kullanıcıdan dönem seçmesini ister. */
.dk-donem-uyari {
  animation: dk-donem-yanip-son 1s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.3);
}
@keyframes dk-donem-yanip-son {
  0%, 100% {
    background-color: #fef2f2;
    border-color: #dc2626 !important;
  }
  50% {
    background-color: #fee2e2;
    border-color: #b91c1c !important;
  }
}

/* (Mayıs 2026) Eskiden "Durum sütunu boş ise kırmızı yanıp sönme" animasyonu
   burada vardı. Artık varsayılan "Tamamlandı" geldiği için kaldırıldı. */

/* ─────────────────────────────────────────────────────────────
   SINAV ADEDİ — Sütun başlığı alt yazısı ve akıllı uyarı stilleri
   ───────────────────────────────────────────────────────────── */

/* Dönem sütun başlığı alt yazısı: "(Sınav Adedi)"
   Dönem ismine yaklaştırılmış (margin-top:0), düz (italic değil) */
.tut-th-altyazi {
  font-size: 12.5px;
  font-weight: 400;
  color: #535c69;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  /* margin-top kaldırıldı — th-inner'in alt boşluğuna yakın dursun */
}

/* Dönem hücresinin th-inner kısmının alt boşluğunu sıfırla
   böylece "1. Dönem" ve "(Sınav Adedi)" arası nefes alanı azalır */
.tut-col-donem .tut-th-inner {
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 1.2;
}

/* Input'un kendisi — uyarı durumunda kenarlık sarı/turuncu ol */
.tut-tablo-input--sayi.tut-tablo-input--uyari {
  border-color: #f59e0b !important;     /* amber-500 */
  background-color: #fffbeb;            /* amber-50 — çok hafif sarımsı */
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

/* ── Sınav Adedi Uyarı Popup'ı (sayfa düzeyinde, fixed sağ alt) ──
   Tablo içinden bağımsız; dar sütunlarda dikey diziliş sorununu çözmek için
   sayfanın sağ altında küçük bir bilgi kutusu olarak görünür. */
.wk-sinav-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  max-width: calc(100vw - 40px);
  background: #fffbeb;                  /* amber-50 */
  border: 2px solid #f59e0b;            /* amber-500 */
  border-radius: 10px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.15), 0 8px 10px -6px rgba(0,0,0,0.1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  z-index: 9999;
  animation: wkSinavPopupSlideIn 0.25s ease-out;
}
@keyframes wkSinavPopupSlideIn {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.wk-sinav-popup-baslik {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #fef3c7;          /* amber-100 */
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid #fde68a;
}
.wk-sinav-popup-ikon {
  font-size: 18px;
  line-height: 1;
}
.wk-sinav-popup-bbslik-metin {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  color: #78350f;
}
.wk-sinav-popup-kapat {
  background: transparent;
  border: none;
  color: #92400e;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  font-weight: 400;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.wk-sinav-popup-kapat:hover { opacity: 1; }
.wk-sinav-popup-icerik {
  padding: 10px 14px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #78350f;
}
.wk-sinav-popup-icerik p {
  margin: 0 0 8px;
}
.wk-sinav-popup-icerik p:last-child { margin-bottom: 0; }
.wk-sinav-popup-icerik strong { color: #92400e; font-weight: 700; }
.wk-sinav-popup-sayac {
  color: #92400e;
  font-size: 12px;
  margin-top: 6px !important;
  padding-top: 6px;
  border-top: 1px dashed #fde68a;
}
.wk-sinav-popup-sayac em { font-style: italic; }

/* Mobilde popup biraz daha küçük olsun */
@media (max-width: 480px) {
  .wk-sinav-popup {
    width: calc(100vw - 20px);
    right: 10px;
    bottom: 10px;
  }
}

/* ════════════════════════════════════════════════════════════
   SEO HERO — 4 EVRAK HIZLI ERİŞİM KARTLARI
   ════════════════════════════════════════════════════════════ */

.evrak-hero {
  margin-bottom: 40px;
}

.evrak-hero-intro {
  text-align: center;
  margin-bottom: 28px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.evrak-hero-intro h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.evrak-hero-intro p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.evrak-hero-intro p strong {
  color: var(--text);
  font-weight: 600;
}

/* Grid: masaüstünde 4'lü, tabletde 2'li, mobilde 1'li */
.evrak-hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 980px) {
  .evrak-hero-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .evrak-hero-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ── Hero kart (link kutusu) ───────────────────────────── */
.evrak-hero-card {
  --accent: #2563eb;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px 18px;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
  isolation: isolate;
}

/* Üst kenarda accent renkli ince şerit */
.evrak-hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  opacity: 0.9;
}

/* Hover: hafif yukarı kalkar, gölgesi belirginleşir */
.evrak-hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  border-color: var(--accent);
  text-decoration: none;
}

.evrak-hero-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Numara — sağ üst köşede yarı şeffaf */
.evrak-hero-numara {
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

/* İkon */
.evrak-hero-ikon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
  display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.08));
}

/* Başlık */
.evrak-hero-baslik {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 8px;
  min-height: 2.6em;
}

/* Açıklama */
.evrak-hero-aciklama {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}

/* Rozetler */
.evrak-hero-rozetler {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.evrak-rozet {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  line-height: 1.4;
  white-space: nowrap;
}

.evrak-rozet--online {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}
.evrak-rozet--online .evrak-rozet-nokta {
  width: 6px; height: 6px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
  animation: evrak-rozet-pulse 2s ease-in-out infinite;
}
@keyframes evrak-rozet-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2); }
  50%      { box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.0); }
}

.evrak-rozet--taslak {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.evrak-rozet--harici {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

/* CTA (alt aksiyon yazısı) */
.evrak-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: auto;
  padding-top: 4px;
  border-top: 1px dashed rgba(0,0,0,.06);
}

.evrak-hero-cta svg {
  transition: transform .22s ease;
}

.evrak-hero-card:hover .evrak-hero-cta svg {
  transform: translateX(4px);
}

/* ── Sticky header'ın kart üstünü kapatmaması için scroll-margin ─ */
.evrak-card {
  scroll-margin-top: 80px;
}

/* ════════════════════════════════════════════════════════════
   SEO İÇERİK BÖLÜMLERİ — sayfa altı (4 × H2)
   ════════════════════════════════════════════════════════════ */

.seo-section {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.seo-section:first-of-type {
  margin-top: 64px;
}

.seo-section h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 14px;
}

.seo-section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, #2563eb 0%, #7c3aed 100%);
}

.seo-section h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 20px;
  margin-bottom: 8px;
  line-height: 1.35;
}

.seo-section p {
  color: #374151;
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.seo-section p strong {
  color: var(--text);
  font-weight: 600;
}

@media (min-width: 768px) {
  .seo-section h2 { font-size: 1.6rem; }
  .seo-section h3 { font-size: 1.12rem; }
}

/* Nasıl Kullanılır — adım listesi */
.seo-adim-listesi {
  list-style: none;
  counter-reset: seo-adim;
  padding: 0;
  margin: 0;
}

.seo-adim-listesi li {
  counter-increment: seo-adim;
  position: relative;
  padding: 14px 16px 14px 56px;
  margin-bottom: 12px;
  background: #f9fafb;
  border-radius: 10px;
  border-left: 3px solid var(--accent);
  font-size: 0.94rem;
  line-height: 1.6;
  color: #374151;
}

.seo-adim-listesi li::before {
  content: counter(seo-adim);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
}

.seo-adim-listesi li strong {
  display: inline;
  color: var(--text);
  font-weight: 700;
}

/* SSS / FAQ */
.seo-faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}

.seo-faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.seo-faq-item summary {
  cursor: pointer;
  padding: 14px 44px 14px 18px;
  position: relative;
  list-style: none;
  user-select: none;
  transition: background-color .15s;
}

.seo-faq-item summary::-webkit-details-marker {
  display: none;
}

.seo-faq-item summary:hover {
  background-color: #f9fafb;
}

.seo-faq-item summary h3 {
  display: inline;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.45;
}

/* Açma/kapatma ikonu (+/−) */
.seo-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: #eff6ff;
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .25s, background-color .15s;
}

.seo-faq-item[open] summary::after {
  content: '−';
  background: var(--accent);
  color: white;
  transform: translateY(-50%) rotate(180deg);
}

.seo-faq-item > p,
.seo-faq-item > div > p {
  padding: 0 18px 16px;
  margin: 0;
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ── Hero'dan tıklanan evrak kartına geçince kısa vurgu ── */
.evrak-card-vurgula {
  animation: evrak-kart-parla 1.8s ease-out;
}

@keyframes evrak-kart-parla {
  0%   { box-shadow: var(--shadow); }
  20%  { box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25), 0 6px 28px rgba(37, 99, 235, 0.15); }
  100% { box-shadow: var(--shadow); }
}

/* ════════════════════════════════════════════════════════════
   ÖRNEK BELGE — "Genel Bilgiler" sağındaki buton
   ════════════════════════════════════════════════════════════ */

.tut-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.tut-section-header .tut-section-label {
  margin: 0;
}

.tut-ornek-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 7px 13px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
}

.tut-ornek-btn:hover {
  background: #dbeafe;
  border-color: #93c5fd;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.tut-ornek-btn:active {
  transform: translateY(0);
}

.tut-ornek-btn svg {
  flex-shrink: 0;
}

/* Mobilde sığsın diye küçük ayar */
@media (max-width: 480px) {
  .tut-ornek-btn {
    font-size: 0.78rem;
    padding: 6px 10px;
  }
}

/* ════════════════════════════════════════════════════════════
   ÖRNEK ÇIKTILAR GALERİSİ — sayfa altında
   ════════════════════════════════════════════════════════════ */

.ornek-ciktilar-bolum {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.ornek-ciktilar-header {
  text-align: center;
  margin-bottom: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ornek-ciktilar-header h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.ornek-ciktilar-header p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

@media (min-width: 768px) {
  .ornek-ciktilar-header h2 { font-size: 1.7rem; }
}

.ornek-ciktilar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 640px) {
  .ornek-ciktilar-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* Bir kart */
.ornek-cikti-kart {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ornek-cikti-kart:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.13);
  border-color: #c7d2fe;
}

.ornek-cikti-kart:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Resim alanı */
.ornek-cikti-resim-wrap {
  position: relative;
  background: #f3f4f6;
  overflow: hidden;
  /* A4 oranını koru — yükseklik orantılı */
  aspect-ratio: 600 / 848;
}

.ornek-cikti-resim-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .35s ease;
}

.ornek-cikti-kart:hover .ornek-cikti-resim-wrap img {
  transform: scale(1.03);
}

/* "Büyüt" ikonu sağ üstte */
.ornek-cikti-buyut-ikon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.95);
  color: #1f2937;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: background .2s, transform .2s;
}

.ornek-cikti-kart:hover .ornek-cikti-buyut-ikon {
  background: #1d4ed8;
  color: #fff;
  transform: scale(1.08);
}

/* Alt bilgi */
.ornek-cikti-bilgi {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 16px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.ornek-cikti-ikon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.ornek-cikti-bilgi h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 2px;
  line-height: 1.3;
}

.ornek-cikti-bilgi p {
  font-size: 0.83rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* ════════════════════════════════════════════════════════════
   MODAL — Tam ekran örnek belge görüntüleyici
   ════════════════════════════════════════════════════════════ */

.ornek-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.88);
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.ornek-modal[data-acik="1"] {
  opacity: 1;
  pointer-events: auto;
}

.ornek-modal[hidden] {
  display: none;
}

.ornek-modal-kapat {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  color: #1f2937;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: background .15s, transform .15s;
  z-index: 10001;
}

.ornek-modal-kapat:hover {
  background: #fff;
  transform: scale(1.06);
}

.ornek-modal-kapat:focus-visible {
  outline: 3px solid #60a5fa;
  outline-offset: 2px;
}

.ornek-modal-icerik {
  max-width: 100%;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  /* Modal açılır animasyonu */
  transform: scale(0.96);
  transition: transform .25s cubic-bezier(.16, 1, .3, 1);
}

.ornek-modal[data-acik="1"] .ornek-modal-icerik {
  transform: scale(1);
}

.ornek-modal-baslik {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-align: center;
  line-height: 1.3;
  /* Resimle aynı genişliğe sahip ol — birlikte ortalansınlar.
     Çarpı butonu zaten position:fixed → çakışma riski yok. */
  max-width: min(900px, 100%);
  width: 100%;
  box-sizing: border-box;
}

/* <picture> default'ta inline → flex container'da hizayı bozar.
   Block yapıp resim genişliğini onun üzerinden veriyoruz. */
.ornek-modal-icerik picture {
  display: block;
  width: 100%;
  max-width: min(900px, 100%);
}

.ornek-modal-icerik img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  background: #fff;
  display: block;
}

/* Mobilde başlık ve kapat butonu küçülsün */
@media (max-width: 600px) {
  .ornek-modal {
    padding: 16px 10px;
  }
  .ornek-modal-kapat {
    width: 40px;
    height: 40px;
    top: 12px;
    right: 12px;
  }
  .ornek-modal-baslik {
    font-size: 0.95rem;
    /* Mobilde başlık üst kısmı çarpı butonuyla çakışabilir;
       sadece sağdan biraz boşluk verelim ki güzel hizalansın */
    padding-right: 36px;
  }
}

/* Modal açıkken body scroll engeli */
body.ornek-modal-acik {
  overflow: hidden;
}

/* ════════════════════════════════════════════════════════════
   BİLGİ NOTU — sayfa altı, kullanıcı bilgilendirme kutusu
   ════════════════════════════════════════════════════════════ */

.bilgi-notu {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: #fefce8;
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
  border-radius: 10px;
  color: #713f12;
  font-size: 0.92rem;
  line-height: 1.6;
}

.bilgi-notu-ikon {
  flex-shrink: 0;
  color: #b45309;
  margin-top: 1px;
}

.bilgi-notu-icerik {
  flex: 1;
  min-width: 0;
}

.bilgi-notu-icerik p {
  margin: 0;
}

.bilgi-notu-icerik p + p {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #fcd34d;
}

.bilgi-notu strong {
  color: #92400e;
  font-weight: 700;
}

/* Mobilde biraz daralt */
@media (max-width: 600px) {
  .bilgi-notu {
    padding: 14px 16px;
    font-size: 0.88rem;
    gap: 10px;
  }
  .bilgi-notu-ikon {
    margin-top: 0;
  }
}
