@charset "UTF-8";
/*
* =====================================================================
* SOURCE FILE: Make all style changes here.
* This file compiles to: wwwroot/css/<filename>.css
* DO NOT edit the compiled .css file directly - changes will be overwritten.
* =====================================================================
*/
/* ============================================================
   WebHarita v3 — Global UI Framework
   Common tokens, components, and utilities shared across the platform.
   ============================================================ */
:root {
  /* Colors (Hacı Persona GIS Palette) */
  --bg-root: #040810;
  --bg-dark: #0f172a;
  --bg-sidebar: #0a1120;
  --bg-main: #0c1528;
  --bg-card: rgba(15, 23, 42, 0.7);
  --bg-input: #1e293b;
  --accent: #38bdf8;
  --accent-glow: rgba(56, 189, 248, 0.12);
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --text: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  /* Borders & Interaction */
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  /* Radius & Transitions */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.align-start {
  align-items: flex-start !important;
}

.h-100 {
  height: 100% !important;
}

.min-h-0 {
  min-height: 0 !important;
}

.border-top {
  border-top: 1px solid var(--border) !important;
}

/* ── Common Components ── */
/* Context Pill (Appears in Top Bars) */
.wh-context-pill {
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
  padding: 6px 14px;
  min-width: 0;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wh-context-pill__label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.wh-context-pill__value {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Global Buttons (Extended) */
.btn-global {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  font-family: inherit;
}

/* Icon Buttons (Used in Sidebars) */
.btn-icon-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.2rem;
  transition: var(--transition);
  text-decoration: none;
}

.btn-icon-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.2);
}

.btn-icon-csv {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.3);
}

.btn-icon-project {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
}

.btn-icon-hakedis {
  color: #c084fc;
  background: rgba(192, 132, 252, 0.12);
  border-color: rgba(192, 132, 252, 0.35);
}

.btn-icon-admin {
  color: var(--accent);
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.3);
}

/* Status Dot */
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

/* ── Layout Utilities ── */
.d-flex {
  display: flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.flex-between {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.align-center {
  display: flex !important;
  align-items: center !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-1 {
  flex: 1 !important;
}

.d-none {
  display: none !important;
}

/* Spacing & Sizing Utilities */
.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mx-4 {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.mx-30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}

.mr-6 {
  margin-right: 6px !important;
}

.mr-8 {
  margin-right: 8px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.ml-8 {
  margin-left: 8px !important;
}

.gap-8 {
  gap: 8px !important;
}

.gap-10 {
  gap: 10px !important;
}

.gap-15 {
  gap: 15px !important;
}

.p-20 {
  padding: 20px !important;
}

.p-32 {
  padding: 32px !important;
}

.py-2 {
  padding: 2px 0 !important;
}

.py-4 {
  padding: 4px 0 !important;
}

.py-8 {
  padding: 8px 0 !important;
}

.px-8 {
  padding: 0 8px !important;
}

.px-10 {
  padding: 0 10px !important;
}

.pl-32 {
  padding-left: 32px !important;
}

.pr-12 {
  padding-right: 12px !important;
}

.pb-6 {
  padding-bottom: 6px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.h-20 {
  height: 20px !important;
}

.h-30 {
  height: 30px !important;
}

.h-32 {
  height: 32px !important;
}

.h-38 {
  height: 38px !important;
}

.h-100,
.h-full {
  height: 100% !important;
}

.w-100 {
  width: 100% !important;
}

.w-160 {
  width: 160px !important;
}

.max-w-450 {
  max-width: 450px !important;
}

.max-w-550 {
  max-width: 550px !important;
}

.max-w-720 {
  max-width: 720px !important;
}

/* Text Utilities */
.text-xs {
  font-size: 0.75rem !important;
}

.analysis-details-body {
  padding: 10px 0 4px;
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.analysis-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.analysis-input-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.analysis-field-input {
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  color: #f1f5f9;
  width: 100%;
  box-sizing: border-box;
}

.user-info-box {
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.lang-switcher-compact {
  width: auto;
  padding: 4px 8px;
  font-size: 0.75rem;
  background: #1e293b;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 8px;
  color: #e2e8f0;
  cursor: pointer;
  outline: none;
}

.vr {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: center;
}

.pt-10 {
  padding-top: 10px !important;
}

.h-20 {
  height: 20px !important;
}

.h-32 {
  height: 32px !important;
}

.h-38 {
  height: 38px !important;
}

.w-14 {
  width: 14px !important;
}

.w-100 {
  width: 100% !important;
}

.w-160 {
  width: 160px !important;
}

.max-w-450 {
  max-width: 450px !important;
}

.rounded-6 {
  border-radius: 6px !important;
}

.rounded-8 {
  border-radius: 8px !important;
}

.rounded-10 {
  border-radius: 10px !important;
}

.rounded-12 {
  border-radius: 12px !important;
}

.border-none {
  border: none !important;
}

.border-light {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.bg-light {
  background: rgba(255, 255, 255, 0.05) !important;
}

.bg-navy {
  background: #0a1120 !important;
}

.bg-info-dim {
  background: rgba(56, 189, 248, 0.08) !important;
}

.bg-white-dim {
  background: rgba(255, 255, 255, 0.02) !important;
}

.bg-white-dim-v2 {
  background: rgba(255, 255, 255, 0.05) !important;
}

.bg-success-dim {
  background: rgba(34, 197, 94, 0.1) !important;
}

.bg-warning-dim {
  background: rgba(245, 158, 11, 0.12) !important;
}

.bg-danger-dim {
  background: rgba(239, 68, 68, 0.1) !important;
}

.bg-purple-dim {
  background: rgba(168, 85, 247, 0.08) !important;
}

.border-info-light {
  border: 1px solid rgba(56, 189, 248, 0.35) !important;
}

.border-info-dim {
  border: 1px solid rgba(56, 189, 248, 0.15) !important;
}

.border-success-dim {
  border: 1px solid rgba(34, 197, 94, 0.2) !important;
}

.border-warning-dim {
  border: 1px solid rgba(245, 158, 11, 0.2) !important;
}

.border-danger-dim {
  border: 1px solid rgba(239, 68, 68, 0.2) !important;
}

.border-purple-light {
  border: 1px solid rgba(168, 85, 247, 0.2) !important;
}

.border-purple-dim {
  border: 1px solid rgba(168, 85, 247, 0.15) !important;
}

.border-accent-dim {
  border: 1px solid rgba(56, 189, 248, 0.2) !important;
}

.border-white-dim {
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.border-dashed {
  border-style: dashed !important;
}

.text-info {
  color: #38bdf8 !important;
}

.text-purple {
  color: #a855f7 !important;
}

.text-danger-light {
  color: #f87171 !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-col {
  flex-direction: column !important;
}

.align-self-center {
  align-self: center !important;
}

.transition-all {
  transition: var(--transition) !important;
}

.box-border {
  box-sizing: border-box !important;
}

.ff-outfit {
  font-family: "Outfit", sans-serif !important;
}

.text-xs {
  font-size: 0.75rem !important;
}

.text-sm {
  font-size: 0.875rem !important;
}

.text-xxxs {
  font-size: 0.65rem !important;
}

.fs-0-7 {
  font-size: 0.7rem !important;
}

.fs-0-75 {
  font-size: 0.75rem !important;
}

.fs-0-8 {
  font-size: 0.8rem !important;
}

.fs-0-85 {
  font-size: 0.85rem !important;
}

.fs-0-9 {
  font-size: 0.9rem !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-24 {
  font-size: 1.5rem !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700,
.fw-bold,
.text-bold {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.lh-1-35 {
  line-height: 1.35 !important;
}

.lh-1-4 {
  line-height: 1.4 !important;
}

.lh-1-5 {
  line-height: 1.5 !important;
}

.ls-05 {
  letter-spacing: 0.5px !important;
}

.ls-1 {
  letter-spacing: 1px !important;
}

.ls-15 {
  letter-spacing: 1.5px !important;
}

.transition-2 {
  transition: all 0.2s ease !important;
}

.transition-03 {
  transition: all 0.3s ease !important;
}

.pos-abs-bottom {
  position: absolute;
  bottom: calc(100% + 5px);
  right: 0;
}

.grid-col-picker-panel {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px;
  z-index: 5000;
  max-height: 350px;
  overflow-y: auto;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
  min-width: 220px;
  flex-direction: column;
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.text-success {
  color: var(--success) !important;
}

.text-bold {
  font-weight: 700 !important;
}

/* Display & Visibility */
.hidden {
  display: none !important;
}

.w-100 {
  width: 100% !important;
}

/* ── Color Extensions ── */
.text-light {
  color: #f1f5f9 !important;
}

.text-amber {
  color: #fbbf24 !important;
}

.text-green {
  color: #22c55e !important;
}

.text-blue {
  color: #38bdf8 !important;
}

.text-indigo {
  color: #818cf8 !important;
}

.bg-navy {
  background: #1e293b !important;
}

.bg-dark-p2-8 {
  background: rgba(0, 0, 0, 0.25) !important;
  padding: 2px 8px;
}

/* ── Boundary & Border Utilities ── */
.border-accent-dim {
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
}

.outline-none {
  outline: none !important;
}

.no-underline {
  text-decoration: none !important;
}

.pointer {
  cursor: pointer !important;
}

/* ── Typography Extensions ── */
.fs-0-7 {
  font-size: 0.7rem !important;
}

.fs-0-75 {
  font-size: 0.75rem !important;
}

.fs-0-8 {
  font-size: 0.8rem !important;
}

.fs-0-82 {
  font-size: 0.82rem !important;
}

.fs-0-85 {
  font-size: 0.85rem !important;
}

.fs-0-9 {
  font-size: 0.9rem !important;
}

.fs-1-05 {
  font-size: 1.05rem !important;
}

.fs-1-4 {
  font-size: 1.4rem !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.lh-1-45 {
  line-height: 1.45 !important;
}

.lh-1-6 {
  line-height: 1.6 !important;
}

.lh-1-8 {
  line-height: 1.8 !important;
}

.align-middle {
  vertical-align: middle !important;
}

/* ── Spacing Extensions ── */
.p-6-10 {
  padding: 6px 10px !important;
}

.p-8-15 {
  padding: 8px 15px !important;
}

.p-15 {
  padding: 15px !important;
}

.p-25 {
  padding: 25px !important;
}

.m-0 {
  margin: 0 !important;
}

.m-10-0 {
  margin: 10px 0 !important;
}

.m-0-0-10 {
  margin: 0 0 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.mr-8 {
  margin-right: 8px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-6 {
  margin-top: 6px !important;
}

.mt-12 {
  margin-top: 12px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.w-18 {
  width: 18px !important;
}

.h-18 {
  height: 18px !important;
}

.w-30p {
  width: 30% !important;
}

.scroll-400 {
  max-height: 400px;
  overflow-y: auto;
}

.accent-green {
  accent-color: #22c55e;
}

.accent-blue {
  accent-color: #38bdf8;
}

.accent-purple {
  accent-color: #a855f7;
}

.accent-amber {
  accent-color: #fbbf24;
}

.pos-rel {
  position: relative !important;
}

.bg-dark-slate {
  background: #1e293b !important;
}

/*# sourceMappingURL=global.css.map */
