/* Branding + Toggle Switch */
.geocontext-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background: var(--dark-bg);
  color: white;
  border-bottom: 1px solid #334155;
  height: 60px;
}

.branding {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 32px;
}

.branding-text h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.tagline {
  font-size: 11px;
  color: #94a3b8;
}

/* TOGGLE SWITCH */
.mode-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: #cbd5e1;
}

.toggle-label.business-label {
  color: var(--primary-green);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #334155;
  border-radius: 34px;
  transition: 0.3s;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .toggle-slider {
  background-color: var(--primary-green);
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

/* Technical mode active changes label colors */
body.technical-mode .toggle-label.technical-label {
  color: var(--primary-blue);
}

body.technical-mode .toggle-label.business-label {
  color: #cbd5e1;
}