
/* ==========================================================================
   Yolmatik v51.0 - Kurumsal Kart & Modern Tablo Mimarisi (Desktop & Mobile)
   ========================================================================== */

.panel-card, .corp-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.02);
  margin-bottom: 30px;
  box-sizing: border-box;
}

body[data-theme="dark"] .panel-card,
body[data-theme="dark"] .corp-card {
  background: var(--bg-card);
  border-color: var(--border-light);
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.4);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 14px;
}

.panel-header h3, .panel-header h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.table-responsive-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -2px;
  border-radius: var(--radius-md);
}

.admin-table, .corp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
}

.admin-table th, .corp-table th {
  background: #f8fafc;
  color: var(--text-main);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 13px 16px;
  border-bottom: 2px solid var(--border-light);
  text-align: left;
  white-space: nowrap;
}

body[data-theme="dark"] .admin-table th,
body[data-theme="dark"] .corp-table th {
  background: #1e293b;
  border-bottom-color: #334155;
  color: #f8fafc;
}

.admin-table td, .corp-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-main);
  vertical-align: middle;
  line-height: 1.5;
}

.admin-table tr:last-child td, .corp-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:nth-child(even) td, .corp-table tr:nth-child(even) td {
  background: rgba(248, 250, 252, 0.6);
}

body[data-theme="dark"] .admin-table tr:nth-child(even) td,
body[data-theme="dark"] .corp-table tr:nth-child(even) td {
  background: rgba(30, 41, 59, 0.3);
}

.admin-table tr:hover td, .corp-table tr:hover td {
  background: rgba(37, 99, 235, 0.04);
}

body[data-theme="dark"] .admin-table tr:hover td,
body[data-theme="dark"] .corp-table tr:hover td {
  background: rgba(37, 99, 235, 0.12);
}

/* Fiyat ve Güç Rozetleri */
.badge-price-green {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.88rem;
  display: inline-block;
  white-space: nowrap;
}

body[data-theme="dark"] .badge-price-green {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.badge-price-blue {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.88rem;
  display: inline-block;
  white-space: nowrap;
}

body[data-theme="dark"] .badge-price-blue {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.4);
  color: #60a5fa;
}

@media (max-width: 768px) {
  .panel-card, .corp-card {
    padding: 16px 14px !important;
    border-radius: var(--radius-md) !important;
  }
  .admin-table th, .corp-table th {
    padding: 10px 12px;
    font-size: 0.75rem;
  }
  .admin-table td, .corp-table td {
    padding: 12px;
    font-size: 0.82rem;
  }
}

/* ==========================================================================
   Yolmatik - Ultra Hızlı, Mobil Öncelikli & Google 2026 Standartlarında CSS (v13.0)
   ========================================================================== */

:root {
  --primary: #0f172a;
  --primary-accent: #2563eb;
  --primary-accent-hover: #1d4ed8;
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border-light: #e2e8f0;
  --border-focus: #3b82f6;
  --badge-bg: #f1f5f9;
  --success: #059669;
  --warning: #d97706;
  --electric: #0284c7;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-subtle: 0 1px 3px 0 rgb(0 0 0 / 0.04), 0 1px 2px -1px rgb(0 0 0 / 0.04);
  --shadow-card: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
}

[data-theme="dark"] {
  --primary: #f8fafc;
  --bg-page: #0b0f19;
  --bg-card: #151d2f;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-light: #64748b;
  --border-light: #232f48;
  --badge-bg: #1c263c;
  --shadow-subtle: 0 1px 3px 0 rgb(0 0 0 / 0.3);
  --shadow-card: 0 4px 6px -1px rgb(0 0 0 / 0.3);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Maintenance Bar */
.maintenance-bar {
  background: #dc2626;
  color: #ffffff;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 3000;
}
.maintenance-bar a {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.25);
  padding: 3px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.75rem;
}

/* ==========================================================================
   Yolmatik v42.0 - Kurumsal Header & Off-Canvas Mobil Menü Stilleri
   ========================================================================== */

.site-header, header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 58px;
}

body[data-theme="dark"] .site-header,
body[data-theme="dark"] header {
  background: rgba(15, 23, 42, 0.96);
  border-bottom-color: rgba(51, 65, 85, 0.8);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 58px;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-icon-wrap {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.brand-sub {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.desktop-nav {
  display: flex;
  gap: 18px;
  list-style: none;
  align-items: center;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.15s;
}

.desktop-nav a:hover { color: var(--primary-accent); }

/* Kurumsal Butonlar */
.btn-lang-pill {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  padding: 5px 11px;
  border-radius: 20px;
  cursor: pointer;
  color: var(--text-main);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.15s ease;
}

.btn-lang-pill:hover {
  border-color: var(--primary-accent);
  color: var(--primary-accent);
}

.btn-icon-round {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-main);
  transition: all 0.15s ease;
}

.btn-icon-round:hover {
  background: rgba(37,99,235,0.08);
  border-color: var(--primary-accent);
}

/* Mobil Eylemler */
.mobile-actions {
  display: none;
  align-items: center;
  gap: 6px;
}

.btn-lang-pill-mobile {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  padding: 5px 9px;
  border-radius: 18px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.btn-icon-round-mobile {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
}

.hamburger-btn {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.hamburger-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.2s ease;
}

/* OFF-CANVAS MOBİL DRAWER (SAYFAYI ASLA AŞAĞI İTMEZ, SAĞDAN KAYAR) */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.offcanvas-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 310px;
  max-width: 85vw;
  background: var(--bg-card);
  z-index: 9999;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  transform: translateX(105%);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  overflow-y: auto;
}

.offcanvas-drawer.open {
  transform: translateX(0) !important;
}

.drawer-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 14px;
}

.badge-v-sm {
  background: #2563eb;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.btn-drawer-close {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-main);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-nav a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-page);
  transition: background 0.15s ease;
}

.drawer-nav a:hover {
  background: rgba(37,99,235,0.08);
  color: var(--primary-accent);
}

.drawer-lang-box {
  margin-top: 12px;
  padding: 12px;
  background: var(--bg-page);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.drawer-lang-title {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.drawer-lang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.drawer-lang-grid a {
  background: var(--bg-card) !important;
  font-size: 0.8rem !important;
  padding: 6px 8px !important;
  text-align: center;
  border-radius: 6px;
}

.drawer-lang-grid a.active {
  color: var(--primary-accent) !important;
  font-weight: 800 !important;
  border: 1px solid var(--primary-accent);
}

@media (max-width: 768px) {
  .desktop-nav { display: none !important; }
  .mobile-actions { display: flex !important; }
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 32px 0 20px 0;
}
.hero h1 {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: var(--text-main);
  line-height: 1.25;
}
.hero p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* Portal Badge Buttons (Klasik & Profesyonel) */
.portal-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}
.portal-badge-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.portal-badge-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}
.portal-badge-btn .p-icon { font-size: 1.2rem; }

@media (max-width: 600px) {
  .portal-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .portal-badge-btn {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
}

/* Search Card - Fully Responsive */
.search-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
  margin-bottom: 30px;
}
.search-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 12px;
  align-items: flex-end;
}
.input-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.input-group select, .input-group input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--bg-page);
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 600;
  outline: none;
  transition: border-color 0.15s;
}
.input-group select:focus, .input-group input:focus {
  border-color: var(--border-focus);
}

.btn-swap {
  background: var(--badge-bg);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  height: 48px;
  width: 48px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  transition: all 0.15s;
}
.btn-swap:hover { color: var(--primary-accent); border-color: var(--primary-accent); }

.btn-primary {
  background: var(--primary-accent);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.15s;
  height: 48px;
}
.btn-primary:hover { background: var(--primary-accent-hover); }

@media (max-width: 768px) {
  .search-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .btn-swap {
    margin: 0 auto !important;
    transform: rotate(90deg) !important;
    height: 40px !important;
    width: 40px !important;
  }
  .btn-primary {
    width: 100% !important;
  }
}

/* Autocomplete Dropdown */
.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  max-height: 240px;
  overflow-y: auto;
  margin-top: 4px;
}
.autocomplete-item {
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover { background: var(--badge-bg); color: var(--primary-accent); }

/* Quick Search Chips */
.quick-chip {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.quick-chip:hover {
  background: var(--primary-accent);
  border-color: var(--primary-accent);
  color: #ffffff;
}

/* Modern Compact Route Cards */
.compact-route-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.15s ease;
}
.compact-route-card:hover {
  border-color: var(--primary-accent);
  box-shadow: var(--shadow-card);
}

/* 2-Column List Rows (Sık Arananlar & Son Arananlar) */
.list-route-row {
  display: block;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.15s ease;
}
.list-route-row:last-child { border-bottom: none; }
.list-route-row:hover .route-title { color: var(--primary-accent); }
.route-title { font-size: 0.95rem; color: var(--text-main); margin-bottom: 2px; }
.arrow-bullet { color: #d97706; font-size: 0.85rem; margin-right: 4px; }
.route-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; padding-left: 14px; }

/* Quick Metric Cards */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-subtle);
}
.metric-card .title {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.metric-card .value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}
.metric-card .subtitle {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* Fuel Box */
.fuel-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
}
.fuel-results-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 0.9rem;
}
.fuel-results-table th, .fuel-results-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}
.fuel-results-table th {
  background: var(--badge-bg);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* Silo Links Grid */
.silo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 8px;
  margin-top: 12px;
}
.silo-link {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.15s;
}
.silo-link:hover {
  border-color: var(--primary-accent);
  color: var(--primary-accent);
}

/* Action Buttons */
.action-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.btn-action {
  background: var(--badge-bg);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.btn-whatsapp { background: #25D366; color: #fff; border: none; }

/* Filter Pills & Pagination */
.filter-pill {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--primary-accent);
  border-color: var(--primary-accent);
  color: #ffffff;
}

.page-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
  min-width: 38px;
  text-align: center;
}
.page-btn:hover, .page-btn.active {
  background: var(--primary-accent);
  border-color: var(--primary-accent);
  color: #ffffff;
}

/* FAQ Box */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  padding: 14px 18px;
}
.faq-question { font-weight: 700; font-size: 0.95rem; color: var(--text-main); margin-bottom: 4px; }
.faq-answer { color: var(--text-muted); font-size: 0.9rem; }

/* Corporate Footer */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  padding: 48px 0 24px 0;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
}
.footer-col ul a {
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--primary-accent); }
.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 340px;
}
.trust-badge {
  background: var(--badge-bg);
  color: var(--text-main);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-light);
}
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.back-to-top-btn {
  color: var(--primary-accent);
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Language Selector Dropdown (v20.0 Multilingual) */
.lang-dropdown-wrapper {
  position: relative;
}
.btn-lang {
  background: var(--badge-bg);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
}
.btn-lang:hover {
  border-color: var(--primary-accent);
  color: var(--primary-accent);
}
.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  min-width: 140px;
  margin-top: 6px;
  z-index: 2000;
  overflow: hidden;
}
.lang-dropdown-menu.show {
  display: block;
  animation: slideDown 0.15s ease forwards;
}
.lang-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.15s;
}
.lang-dropdown-menu a:last-child { border-bottom: none; }
.lang-dropdown-menu a:hover, .lang-dropdown-menu a.active {
  background: var(--badge-bg);
  color: var(--primary-accent);
}

/* ==========================================================================
   Yolmatik - Mobil Yatay Kaydırılabilir Popüler Şerit (v28.0)
   ========================================================================== */
.popular-chips-wrapper {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.popular-badge-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.popular-chips-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  padding: 4px 2px;
  flex: 1;
}
.popular-chips-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}
.popular-chips-scroll .quick-chip {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 0.8rem;
  padding: 6px 13px;
  border-radius: 20px;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.65rem !important;
    line-height: 1.25 !important;
  }
  .hero p {
    font-size: 0.85rem !important;
  }
  .search-card {
    padding: 16px !important;
  }
  .popular-chips-wrapper {
    margin-top: 10px;
    padding-top: 10px;
    gap: 8px;
  }
  .maintenance-bar {
    font-size: 0.75rem !important;
    padding: 6px 10px !important;
  }
}

/* Mobilde Popüler Kısayolları Gizle (Masaüstünde Göster) - v29.0 */
@media (max-width: 768px) {
  .popular-chips-wrapper {
    display: flex !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    margin-top: 10px !important;
    padding-top: 10px !important;
  }
  .popular-chips-wrapper::-webkit-scrollbar {
    display: none !important;
  }
  .popular-chips-scroll {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    flex-wrap: nowrap !important;
    scrollbar-width: none !important;
  }
  .popular-chips-scroll::-webkit-scrollbar {
    display: none !important;
  }
  .search-card {
    margin-bottom: 24px !important;
  }
}

/* ==========================================================================
   Yolmatik - v30.0 Ultra Minimalist & Mobile-First Launch Optimizations
   ========================================================================== */

/* Semantic Screen-Reader Only H1 for 100% SEO Compliance */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Home Search Top Position */
.home-search-top {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .home-search-top {
    margin-top: 14px !important;
    padding: 16px 14px !important;
    border-radius: var(--radius-md) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
  }
  
  /* iOS Safari Auto-Zoom Fix (Must be 16px to prevent unpleasant zooming on input focus) */
  .input-group input,
  .input-group select {
    font-size: 16px !important;
    padding: 12px 14px !important;
    height: 48px !important;
  }
  
  .btn-primary {
    height: 48px !important;
    font-size: 1rem !important;
  }
  
  .navbar {
    height: 56px !important;
  }
  
  .logo {
    font-size: 1.2rem !important;
  }
}

/* ==========================================================================
   Yolmatik v40.0 - Yeni Nesil Mobil Navigasyon, EV & SEO Arayüz Stilleri
   ========================================================================== */

/* Doğrudan Navigasyon Başlatma Barı */
.nav-launch-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-subtle);
}

.nav-launch-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-main);
  flex-wrap: wrap;
}

.nav-launch-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  min-height: 46px;
  box-sizing: border-box;
}

.btn-nav svg {
  flex-shrink: 0;
}

.btn-nav-google {
  background: #10b981;
  color: #ffffff;
}
.btn-nav-google:hover {
  background: #059669;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-nav-apple {
  background: #1e293b;
  color: #ffffff;
}
.btn-nav-apple:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-nav-yandex {
  background: #f59e0b;
  color: #ffffff;
}
.btn-nav-yandex:hover {
  background: #d97706;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-nav-reverse {
  background: var(--bg-page);
  color: var(--primary-accent);
  border: 1.5px solid var(--primary-accent);
}
.btn-nav-reverse:hover {
  background: rgba(37, 99, 235, 0.08);
  transform: translateY(-1px);
}

/* Elektrikli Araç (EV) Şarj Planı Kartı */
.ev-plan-card {
  background: linear-gradient(135deg, rgba(37,99,235,0.04) 0%, rgba(16,185,129,0.04) 100%);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-subtle);
}

.ev-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.ev-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
}

.ev-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 2px 0 0 0;
}

.ev-stops-badge {
  background: #10b981;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.ev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.ev-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: left;
}

.ev-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ev-val {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 2px;
}

.ev-sub {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Karbon Ayak İzi (CO2) Çevre Rozeti */
.eco-badge-card {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-subtle);
}

body[data-theme="dark"] .eco-badge-card {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.25);
}

.eco-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.eco-icon {
  font-size: 1.8rem;
}

.eco-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #166534;
  margin: 0;
}

body[data-theme="dark"] .eco-title {
  color: #4ade80;
}

.eco-subtitle {
  font-size: 0.85rem;
  color: #15803d;
  margin: 2px 0 0 0;
}

body[data-theme="dark"] .eco-subtitle {
  color: #86efac;
}

.eco-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.eco-stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  text-align: center;
}

.eco-stat-item.highlight {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.06);
}

.eco-stat-item.tree {
  border-color: #059669;
  background: rgba(5, 150, 105, 0.08);
}

.eco-stat-val {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 2px;
}

.eco-stat-item.highlight .eco-stat-val {
  color: #059669;
}

.eco-stat-item.tree .eco-stat-val {
  color: #047857;
}

.eco-stat-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Yakıt / Güç Seçici Hap Butonlar */
.fuel-type-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fuel-pill {
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  color: var(--text-main);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fuel-pill:hover {
  border-color: var(--primary-accent);
  color: var(--primary-accent);
}

.fuel-pill.active {
  background: var(--primary-accent);
  border-color: var(--primary-accent);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
}

@media (max-width: 768px) {
  .nav-launch-buttons {
    grid-template-columns: 1fr 1fr;
  }
  .btn-nav {
    font-size: 0.8rem;
    padding: 10px 8px;
    min-height: 44px;
  }
  .ev-grid, .eco-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fuel-type-selector {
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .fuel-pill {
    white-space: nowrap;
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* ==========================================================================
   Yolmatik v41.0 - PWA, Kıyaslama Grafiği, Accordion & Yazdırma Stilleri
   ========================================================================== */

/* PWA Mobil Akıllı Yükleme Banner'ı (App Store / Play Store Tarzı, Ultra Kompakt & Yüksek Dönüşüm) */
/* PWA Mobil & Masaüstü Akıllı Yükleme Banner'ı (Tam Ortalanmış Apple Floating Dock Tarzı) */
.pwa-smart-banner {
  position: fixed;
  bottom: 20px;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  width: max-content !important;
  max-width: calc(100vw - 24px);
  height: 52px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(203, 213, 225, 0.95);
  border-radius: 26px;
  padding: 6px 16px 6px 10px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 9995;
  animation: slideUpSmartCenter 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

@keyframes slideUpSmartCenter {
  from { transform: translate(-50%, 100%); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}

body[data-theme="dark"] .pwa-smart-banner {
  background: rgba(30, 41, 59, 0.98);
  border-color: rgba(71, 85, 105, 0.85);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.pwa-smart-sub {
  font-size: 0.72rem !important;
  font-weight: 600;
  color: #059669;
  white-space: nowrap;
}

body[data-theme="dark"] .pwa-smart-sub {
  color: #34d399;
}

@media (max-width: 768px) {
  .pwa-smart-banner {
    bottom: 12px !important;
    max-width: calc(100vw - 20px) !important;
    padding: 6px 12px 6px 8px !important;
    gap: 8px !important;
  }
}

.pwa-smart-banner-hidden {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  max-width: 420px;
  margin: 0 auto;
  height: 52px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 26px;
  padding: 6px 10px 6px 8px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  z-index: 9995;
  animation: slideUpSmart 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

body[data-theme="dark"] .pwa-smart-banner {
  background: rgba(30, 41, 59, 0.98);
  border-color: rgba(71, 85, 105, 0.8);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

@keyframes slideUpSmart {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.pwa-smart-dismiss {
  background: transparent;
  border: none;
  font-size: 0.95rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.pwa-smart-icon {
  border-radius: 8px;
  flex-shrink: 0;
}

.pwa-smart-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
  text-align: left;
}

.pwa-smart-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.15;
}

.pwa-smart-sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: #10b981;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body[data-theme="dark"] .pwa-smart-sub {
  color: #34d399;
}

.pwa-smart-btn {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff !important;
  border: none;
  padding: 7px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pwa-smart-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.45);
}

/* Radar & Dağ Geçidi Rozeti */
.pass-notice-card {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: #92400e;
}

body[data-theme="dark"] .pass-notice-card {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
  color: #fcd34d;
}

.pass-notice-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Yakıt Türü Maliyet Kıyaslama Kartı */
.fuel-compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-subtle);
}

.compare-bars-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-bar-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.compare-bar-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-main);
}

.compare-track {
  height: 10px;
  background: var(--bg-page);
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
}

.compare-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 0.4s ease;
}

.badge-eco {
  background: #10b981;
  color: #ffffff;
  font-size: 0.72rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  margin-left: 6px;
}

/* Akıllı SSS Accordion */
.faq-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-acc-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-acc-item.active {
  border-color: var(--primary-accent);
}

.faq-acc-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: transparent;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
}

.faq-acc-icon {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.faq-acc-body {
  display: none;
  padding: 0 20px 16px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-acc-item.active .faq-acc-body {
  display: block;
}

/* Profesyonel A4 Seyahat Brifingi Yazdırma / PDF Çıktısı */
@media print {
  nav, footer, .nav-launch-bar, .action-btns, .btn-swap, #route-map, .pwa-banner, .fuel-type-selector, .autocomplete-dropdown {
    display: none !important;
  }
  body {
    background: #ffffff !important;
    color: #000000 !important;
    font-size: 11pt !important;
  }
  .container {
    max-width: 100% !important;
    padding: 0 !important;
  }
  .fuel-box, .metric-card, .ev-plan-card, .eco-badge-card, .panel-card {
    border: 1px solid #cccccc !important;
    box-shadow: none !important;
    page-break-inside: avoid;
  }
  .faq-acc-body {
    display: block !important;
  }
  h1 {
    font-size: 1.5rem !important;
  }
}

/* ==========================================================================
   Yolmatik v47.0 - 81 İl ve İlçe Şarj Ağı Stilleri
   ========================================================================== */
.district-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 6px 12px;
  border-radius: 18px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}

.district-pill-link:hover {
  background: rgba(37,99,235,0.08);
  border-color: var(--primary-accent);
  color: var(--primary-accent);
  transform: translateY(-1px);
}

.district-pill-link.active {
  background: var(--primary-accent);
  color: #ffffff !important;
  border-color: var(--primary-accent);
  font-weight: 700;
}

.city-charging-card {
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.city-charging-card:hover {
  background: #ffffff;
  border-color: var(--primary-accent);
  box-shadow: 0 4px 10px rgba(37,99,235,0.1);
  transform: translateY(-2px);
}

body[data-theme="dark"] .city-charging-card:hover {
  background: #1e293b;
}

.city-charging-card .plate {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--primary-accent);
}

.city-charging-card .cname {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.city-charging-card .cdist {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}


/* Mobil Tablo Kaydırma İpucu (Scroll Hint) */
.table-scroll-hint {
  display: none;
  font-size: 0.76rem;
  color: var(--primary-accent);
  font-weight: 700;
  margin-bottom: 8px;
  text-align: right;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .table-scroll-hint {
    display: block !important;
  }
  .autocomplete-dropdown {
    max-height: 190px !important;
  }
}
