/**
 * ══════════════════════════════════════════════════════════════════════════════
 * GÖKÇEOS PROTOTYPE UI V2 — LOGLAMA & HOTSPOT MERKEZİ CSS
 * Standard: G-107 5651 Law Compliance, TÜBİTAK KamuSM Timestamp & Captive Portal
 * Layout: Strict Flush Left-Aligned Sidebar · Live AP & Session Matrix
 * ══════════════════════════════════════════════════════════════════════════════
 */

.gkv2-hs-container {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 560px;
  background: #090e1a;
  color: #e2e8f0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  overflow: hidden;
  box-sizing: border-box;
}

/* ─────────────────────────────────────────────────────────────────────────────
   1. STRICT FLUSH LEFT-ALIGNED SIDEBAR
   ───────────────────────────────────────────────────────────────────────────── */
.gkv2-hs-sidebar {
  width: 230px;
  min-width: 230px;
  max-width: 230px;
  background: #060a14;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  user-select: none;
  padding: 10px 8px;
}

.gkv2-hs-brand {
  padding: 8px 10px 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 8px;
}

.gkv2-hs-brand-title {
  font-size: 13px;
  font-weight: 800;
  color: #06b6d4;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
}

.gkv2-hs-brand-sub {
  font-size: 10px;
  color: #64748b;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gkv2-hs-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.gkv2-hs-nav-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  height: 36px;
  padding: 0 10px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.14s ease;
  text-align: left;
  white-space: nowrap;
  outline: none;
}

.gkv2-hs-nav-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #f1f5f9;
}

.gkv2-hs-nav-item.active {
  background: rgba(6, 182, 212, 0.15);
  color: #22d3ee;
  border-left: 3px solid #06b6d4;
  border-radius: 0 6px 6px 0;
  font-weight: 700;
}

.gkv2-hs-nav-icon {
  font-size: 14px;
  width: 18px;
  min-width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  flex-shrink: 0;
}

.gkv2-hs-nav-label {
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gkv2-hs-sidebar-footer {
  padding: 10px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   2. MAIN WORKSPACE & TOP COMMAND BAR
   ───────────────────────────────────────────────────────────────────────────── */
.gkv2-hs-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #090e1a;
}

.gkv2-hs-topbar {
  height: 48px;
  padding: 0 18px;
  background: #0b1222;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  gap: 12px;
}

.gkv2-hs-page-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #f8fafc;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gkv2-hs-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  box-sizing: border-box;
}

.gkv2-hs-panel {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.gkv2-hs-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gkv2-hs-panel-title {
  font-size: 13px;
  font-weight: 800;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .gkv2-hs-sidebar {
    width: 60px;
    min-width: 60px;
    max-width: 60px;
    padding: 8px 4px;
  }
  .gkv2-hs-brand-title span:not(.gkv2-hs-brand-icon),
  .gkv2-hs-brand-sub,
  .gkv2-hs-nav-label,
  .gkv2-hs-sidebar-footer {
    display: none;
  }
  .gkv2-hs-nav-item {
    justify-content: center;
    padding: 0;
  }
}
