/* ============================================================
   OBS — Online Bilet Satış Sistemi · CSS
   ============================================================ */

/* ─── MODAL WRAPPER ─────────────────────────────────────── */
#modalOBS {
  position: fixed;
  inset: 0;
  z-index: 10002;
  background: rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
#modalOBS.open {
  display: flex;
}

.obs-dialog {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 20px;
  width: 100%;
  max-width: 900px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(99, 102, 241, 0.25), 0 32px 64px rgba(0,0,0,0.6);
  animation: obsSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes obsSlideIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ─── MODAL HEADER ───────────────────────────────────────── */
.obs-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px;
  background: rgba(99, 102, 241, 0.08);
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
  flex-shrink: 0;
}

.obs-modal-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #e0e7ff;
}

.obs-modal-title .obs-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: obsPulse 1.4s ease-in-out infinite;
}

.obs-close-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #94a3b8;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s;
}
.obs-close-btn:hover { background: rgba(239,68,68,0.2); color: #f87171; }

/* ─── STATS ROW ──────────────────────────────────────────── */
.obs-stats-row {
  display: flex;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(0,0,0,0.2);
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow-x: auto;
}

.obs-stat-card {
  flex: 1;
  min-width: 90px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 12px;
  padding: 8px 12px;
  text-align: center;
  transition: transform 0.2s;
}
.obs-stat-card:hover { transform: translateY(-2px); }

.obs-stat-icon { font-size: 1.1rem; margin-bottom: 2px; }
.obs-stat-value {
  font-size: 1rem;
  font-weight: 800;
  color: #a5b4fc;
  line-height: 1.2;
}
.obs-stat-label {
  font-size: 0.6rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── TABS ───────────────────────────────────────────────── */
.obs-tabs {
  display: flex;
  gap: 2px;
  padding: 8px 16px 0;
  background: rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.obs-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 10px 10px 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  border: none;
  background: rgba(255,255,255,0.03);
  transition: all 0.2s;
  white-space: nowrap;
}
.obs-tab:hover { color: #a5b4fc; background: rgba(99,102,241,0.1); }
.obs-tab.active {
  color: #e0e7ff;
  background: rgba(99,102,241,0.18);
  border-bottom: 2px solid #6366f1;
}

.obs-tab-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  display: inline-block;
}

/* ─── PANELS ─────────────────────────────────────────────── */
.obs-panel {
  display: none;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  animation: obsFadeIn 0.25s ease;
}
.obs-panel.active { display: flex; }

@keyframes obsFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.obs-panel-inner {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(99,102,241,0.3) transparent;
}

.obs-panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.obs-refresh-hint {
  font-size: 0.6rem;
  color: #475569;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* ─── LIVE GRID (Canlı Satış) ───────────────────────────── */
.obs-live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
  padding: 12px 16px;
}

.obs-sefer-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(99,102,241,0.18);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s;
  position: relative;
}
.obs-sefer-card:hover {
  border-color: rgba(99,102,241,0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99,102,241,0.15);
}

.obs-sefer-card.new-sale {
  animation: obsNewSale 0.6s ease;
}
@keyframes obsNewSale {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  50%  { box-shadow: 0 0 0 12px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.obs-sefer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.obs-route {
  font-weight: 700;
  font-size: 0.78rem;
  color: #e2e8f0;
}

.obs-arrow { color: #6366f1; margin: 0 3px; }

.obs-date {
  font-size: 0.65rem;
  color: #64748b;
  background: rgba(255,255,255,0.04);
  padding: 2px 6px;
  border-radius: 6px;
}

.obs-sefer-body { padding: 8px 12px; }

.obs-seat-info { margin-bottom: 6px; }

.obs-seat-bar-track {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}
.obs-seat-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.5s ease;
}

.obs-seat-text {
  font-size: 0.65rem;
  color: #94a3b8;
}

.obs-price-info {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.obs-price {
  font-size: 0.85rem;
  font-weight: 800;
}

.obs-early-badge {
  font-size: 0.6rem;
  font-weight: 700;
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.3);
  padding: 1px 5px;
  border-radius: 5px;
}

.obs-sefer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px 10px;
}

.obs-status-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid currentColor;
}

.obs-quick-sell-btn {
  font-size: 0.65rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  border: none;
  padding: 4px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.obs-quick-sell-btn:hover {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  transform: scale(1.05);
}

/* ─── MOBİL UYGULAMA SİMÜLATÖRÜ ────────────────────────── */
.obs-mobile-layout {
  display: flex;
  gap: 12px;
  height: 100%;
  overflow: hidden;
}

.obs-phone-frame {
  flex-shrink: 0;
  width: 200px;
  background: #0a0f1e;
  border: 3px solid #1e293b;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}

.obs-phone-notch {
  width: 60px;
  height: 14px;
  background: #0a0f1e;
  border-radius: 0 0 12px 12px;
  margin: 4px auto 0;
  border: 2px solid #1e293b;
  border-top: none;
  flex-shrink: 0;
}

.obs-phone-screen {
  flex: 1;
  background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 100%);
  overflow-y: auto;
  scrollbar-width: none;
}
.obs-phone-screen::-webkit-scrollbar { display: none; }

.obs-phone-topbar {
  background: rgba(99,102,241,0.9);
  padding: 6px 10px;
  text-align: center;
  font-size: 0.58rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.obs-phone-request {
  margin: 6px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 10px;
  padding: 7px 8px;
  animation: obsRequestSlide 0.3s ease;
}

@keyframes obsRequestSlide {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.obs-phone-req-route {
  font-size: 0.6rem;
  font-weight: 700;
  color: #e0e7ff;
  margin-bottom: 2px;
}

.obs-phone-req-meta {
  font-size: 0.52rem;
  color: #94a3b8;
  margin-bottom: 5px;
}

.obs-phone-req-btns {
  display: flex;
  gap: 4px;
}

.obs-phone-btn-accept, .obs-phone-btn-reject {
  flex: 1;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 3px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}
.obs-phone-btn-accept { background: #22c55e; color: #fff; }
.obs-phone-btn-reject { background: #ef4444; color: #fff; }
.obs-phone-btn-accept:hover { background: #16a34a; }
.obs-phone-btn-reject:hover { background: #dc2626; }

.obs-phone-home-bar {
  height: 18px;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.obs-phone-home-bar::after {
  content: '';
  width: 40px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}

/* Talep listesi */
.obs-request-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(99,102,241,0.3) transparent;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.obs-request-card {
  background: rgba(15,23,42,0.8);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  animation: obsRequestSlide 0.3s ease;
}
.obs-request-card:hover { border-color: rgba(99,102,241,0.4); }

.obs-req-icon { font-size: 1.4rem; flex-shrink: 0; }

.obs-req-info { flex: 1; min-width: 0; }
.obs-req-route {
  font-size: 0.78rem;
  font-weight: 700;
  color: #e2e8f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.obs-req-meta {
  font-size: 0.65rem;
  color: #94a3b8;
  margin-top: 2px;
}

.obs-req-urgency {
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  flex-shrink: 0;
}
.obs-req-urgency.acil { background: rgba(239,68,68,0.15); color: #f87171; }
.obs-req-urgency.normal { background: rgba(234,179,8,0.15); color: #fbbf24; }
.obs-req-urgency.planli { background: rgba(34,197,94,0.15); color: #4ade80; }

.obs-req-actions { display: flex; gap: 5px; flex-shrink: 0; }
.obs-btn-accept, .obs-btn-reject {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.obs-btn-accept {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.3);
}
.obs-btn-accept:hover { background: rgba(34,197,94,0.3); }
.obs-btn-reject {
  background: rgba(239,68,68,0.1);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.25);
}
.obs-btn-reject:hover { background: rgba(239,68,68,0.25); }

/* Auto-accept row */
.obs-auto-row {
  padding: 10px 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.obs-toggle-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.72rem;
  color: #94a3b8;
}

.obs-toggle {
  width: 36px;
  height: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
  flex-shrink: 0;
}
.obs-toggle.on { background: rgba(99,102,241,0.5); border-color: #6366f1; }
.obs-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.obs-toggle.on::after { transform: translateX(16px); }

.obs-min-price {
  width: 90px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  color: #e2e8f0;
  font-size: 0.72rem;
  padding: 4px 8px;
  margin-left: auto;
  outline: none;
}
.obs-min-price:focus { border-color: rgba(99,102,241,0.5); }

/* ─── BİLET LİSTESİ ──────────────────────────────────────── */
.obs-bilet-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 16px;
}

.obs-bilet-item {
  background: rgba(15,23,42,0.7);
  border: 1px solid rgba(99,102,241,0.15);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}
.obs-bilet-item:hover { border-color: rgba(99,102,241,0.35); }

.obs-bilet-pnr {
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: #6366f1;
  background: rgba(99,102,241,0.1);
  padding: 2px 8px;
  border-radius: 5px;
  flex-shrink: 0;
}

.obs-bilet-info { flex: 1; min-width: 0; }
.obs-bilet-route {
  font-size: 0.78rem;
  font-weight: 700;
  color: #e2e8f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.obs-bilet-meta {
  font-size: 0.62rem;
  color: #64748b;
  margin-top: 2px;
}

.obs-bilet-price {
  font-size: 0.82rem;
  font-weight: 800;
  color: #4ade80;
  flex-shrink: 0;
}

.obs-btn-iade {
  font-size: 0.62rem;
  font-weight: 700;
  background: rgba(239,68,68,0.1);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.2);
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.obs-btn-iade:hover { background: rgba(239,68,68,0.25); }

.obs-bilet-durum {
  font-size: 0.58rem;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.obs-bilet-durum.aktif { background: rgba(34,197,94,0.15); color: #4ade80; }
.obs-bilet-durum.iade { background: rgba(239,68,68,0.15); color: #f87171; }
.obs-bilet-durum.degistirildi { background: rgba(234,179,8,0.15); color: #fbbf24; }

/* ─── SEFER OLUŞTUR (OBS'den) ───────────────────────────── */
.obs-sefer-form {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.obs-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.obs-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.obs-form-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.obs-form-input, .obs-form-select {
  background: rgba(15,23,42,0.8);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 8px;
  color: #e2e8f0;
  font-size: 0.78rem;
  padding: 7px 10px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.obs-form-input:focus, .obs-form-select:focus {
  border-color: rgba(99,102,241,0.6);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

.obs-form-select option {
  background: #1e293b;
  color: #e2e8f0;
}

.obs-preview-box {
  background: rgba(99,102,241,0.06);
  border: 1px solid rgba(99,102,241,0.18);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.72rem;
}

.obs-preview-title {
  font-weight: 700;
  color: #a5b4fc;
  margin-bottom: 6px;
  font-size: 0.7rem;
}

.obs-preview-row {
  display: flex;
  justify-content: space-between;
  color: #94a3b8;
  margin-bottom: 2px;
}
.obs-preview-row span:last-child { color: #e2e8f0; font-weight: 600; }

.obs-btn-create-sefer {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.obs-btn-create-sefer:hover {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(99,102,241,0.4);
}
.obs-btn-create-sefer:active { transform: translateY(0); }

/* ─── AYARLAR ─────────────────────────────────────────────── */
.obs-settings-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 16px;
}

.obs-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15,23,42,0.6);
  border: 1px solid rgba(99,102,241,0.12);
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.obs-setting-row:hover { border-color: rgba(99,102,241,0.3); }

.obs-setting-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 2px;
}
.obs-setting-desc {
  font-size: 0.62rem;
  color: #64748b;
}

.obs-info-box {
  background: rgba(99,102,241,0.06);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 10px;
  padding: 12px 14px;
}

.obs-info-box h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: #a5b4fc;
  margin-bottom: 8px;
}

.obs-info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.obs-info-box li {
  font-size: 0.68rem;
  color: #94a3b8;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.obs-info-box li::before {
  content: '→';
  color: #6366f1;
  flex-shrink: 0;
}

.obs-info-box li strong { color: #e2e8f0; }

/* Dinamik fiyat açıklama kartları */
.obs-dynamic-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 4px;
}

.obs-dynamic-card {
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.62rem;
  border: 1px solid transparent;
}

.obs-dynamic-card .obs-dc-label {
  font-weight: 700;
  margin-bottom: 2px;
}
.obs-dynamic-card .obs-dc-desc { color: rgba(255,255,255,0.6); }

/* ─── EMPTY STATE ────────────────────────────────────────── */
.obs-empty {
  text-align: center;
  color: #475569;
  font-size: 0.75rem;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.obs-empty::before {
  content: attr(data-icon);
  font-size: 2rem;
  opacity: 0.4;
}

/* ─── NAV BUTTON (Sol Sidebar) ───────────────────────────── */
#btnOBS {
  position: relative;
}
#btnOBS .obs-nav-badge {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  border: 1.5px solid #0f172a;
  animation: obsPulse 1.4s ease-in-out infinite;
  display: none;
}
#btnOBS.has-requests .obs-nav-badge { display: block; }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes obsPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 currentColor; }
  50% { opacity: 0.7; box-shadow: 0 0 0 5px transparent; }
}

/* ─── MINI CANLI SATIŞLAR (Sağ Panel Widget) ─────────────── */
.obs-mini-widget {
  background: rgba(99,102,241,0.06);
  border: 1px solid rgba(99,102,241,0.18);
  border-radius: 10px;
  overflow: hidden;
  margin: 4px 0;
}

.obs-mini-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: rgba(99,102,241,0.1);
  font-size: 0.62rem;
  font-weight: 700;
  color: #a5b4fc;
}

.obs-mini-open-btn {
  font-size: 0.55rem;
  font-weight: 700;
  background: rgba(99,102,241,0.2);
  color: #a5b4fc;
  border: none;
  padding: 2px 7px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s;
}
.obs-mini-open-btn:hover { background: rgba(99,102,241,0.4); }

.obs-mini-sefer-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.obs-mini-route {
  flex: 1;
  font-size: 0.65rem;
  color: #e2e8f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.obs-mini-bar-wrap {
  width: 50px;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}
.obs-mini-bar-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 0.5s ease;
}

.obs-mini-price {
  font-size: 0.62rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 640px) {
  .obs-dialog {
    max-height: 95vh;
    border-radius: 16px;
  }
  .obs-live-grid {
    grid-template-columns: 1fr;
  }
  .obs-form-row {
    grid-template-columns: 1fr;
  }
  .obs-tabs {
    overflow-x: auto;
    padding-bottom: 0;
  }
  .obs-tab {
    padding: 7px 10px;
    font-size: 0.65rem;
  }
  .obs-dynamic-cards {
    grid-template-columns: 1fr;
  }
}
