:root {
  color-scheme: light;
  --blue: #2563eb;
  --blue-hover: #1d4ed8;
  --blue-soft: #eff6ff;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft-line: #f1f5f9;
  --panel: #ffffff;
  --bg: #edf1f6;
  --danger: #a73333;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--bg);
  cursor: default;
}

.impersonation-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 0.45rem 1rem;
  background: #fef3c7;
  border-bottom: 1px solid #f59e0b;
  color: #92400e;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
}

.impersonation-banner-end {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.impersonation-banner-end:hover {
  color: #78350f;
}

body.impersonating-user .container-header {
  margin-top: 30px;
}

a {
  color: var(--blue);
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container-header {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
  position: relative;
  z-index: 1000;
}

.top-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 12px 24px;
}

.leftHeader {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
}

#logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 208px;
  object-fit: contain;
}

.rightHeader {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  color: var(--ink);
  font-size: 14px;
}

.header-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.header-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #475569;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.header-nav-link:hover {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.08);
  transform: translateY(-1px);
}

.header-nav-link--accent {
  color: #1d4ed8;
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.95), rgba(239, 246, 255, 0.9));
}

.header-nav-link--accent:hover {
  color: #1e3a8a;
  background: #ffffff;
}

.header-nav-icon {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  opacity: 0.88;
}

.header-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(148, 163, 184, 0.22);
}

.header-user-chip {
  display: inline-flex;
  align-items: center;
  max-width: 160px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: #1e3a8a;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.header-user-chip:hover {
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.08);
}

.link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.header-icon-button,
.account-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #334155;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.header-icon-button:hover,
.account-button:hover {
  color: var(--blue);
  background: #f8fafc;
  border-color: rgba(148, 163, 184, 0.22);
  transform: translateY(-1px);
}

.header-bell-icon,
.account-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.dropdown {
  padding-left: 0;
}

.notification-icon,
.dropdown,
.multi-select {
  position: relative;
}

.notification-dropdown,
.multi-select-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 220px;
  background: #ffffff;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(31, 45, 61, 0.18);
  z-index: 5000;
}

.dropdown-content {
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  display: none;
  min-width: 140px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(31, 45, 61, 0.18);
  z-index: 5000;
}

.notification-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 700;
}

.mark-all-read {
  color: #ffffff;
  font-size: 11px;
}

.notification-content {
  padding: 12px;
  color: var(--muted);
}

.dropdown.open .dropdown-content {
  display: grid;
  gap: 4px;
}

.dropdown-content a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--ink);
}

.dropdown-content a:hover {
  background: #f1f6ff;
  color: var(--blue);
}

.search-filter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px 20px;
}

.search-status {
  min-height: 0;
  padding: 0 20px 8px;
  color: var(--muted);
  font-size: 13px;
}

.search-status[hidden] {
  display: none !important;
}

.search-progress-track {
  position: relative;
  width: 100%;
  height: 6px;
  overflow: hidden;
  background: rgba(66, 133, 245, 0.14);
  border-radius: 999px;
}

.search-progress-track[hidden] {
  display: none !important;
}

.search-progress-bar {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background: transparent;
}

.search-progress-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(66, 133, 245, 0.15) 0%,
    var(--blue) 45%,
    rgba(66, 133, 245, 0.15) 100%
  );
  animation: primary-service-progress 1.6s ease-in-out infinite;
}

.search-progress-track.is-complete {
  background: rgba(66, 133, 245, 0.14);
}

.search-progress-track.is-complete .search-progress-bar::before {
  display: none;
}

.search-progress-track.is-complete .search-progress-bar {
  animation: search-progress-complete 0.45s ease-out forwards;
  background-color: var(--blue);
}

@keyframes search-progress-complete {
  from {
    opacity: 0.85;
    transform: scaleX(0.35);
    transform-origin: left center;
  }
  to {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left center;
  }
}

.search-status.error {
  color: var(--danger);
}

.search-container {
  position: relative;
  display: inline-block;
}

/*
 * PlaceAutocompleteElement: Google reapplies internal styles after upgrade, so host
 * CSS variables often disappear after load. .cf-pac-wrap holds a stable border.
 */
.cf-pac-wrap {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  border: 1px solid #dadce0;
  border-radius: 5px;
  background: #fff;
}

.cf-pac-wrap.searchAddress {
  width: min(400px, 48vw);
  min-height: 40px;
}

.cf-pac-wrap #searchAddress {
  width: 100%;
}

.cf-pac-wrap gmp-place-autocomplete {
  width: 100%;
  display: block;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  min-height: 40px;
  height: auto;
  background: transparent !important;
  color-scheme: light;
  --gmp-mat-color-outline-decorative: transparent;
}

.cf-pac-wrap gmp-place-autocomplete::part(focus-ring) {
  display: none !important;
}

.cf-pac-wrap:focus-within {
  border-color: var(--blue);
  outline: 3px solid rgba(66, 133, 245, 0.18);
  outline-offset: 0;
}

.search-container:has(.cf-pac-wrap) > #searchClear {
  display: none !important;
  pointer-events: none;
}

.pac-container {
  z-index: 8000;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(31, 45, 61, 0.18);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

input.searchAddress,
.cf-pac-wrap.searchAddress {
  width: min(400px, 48vw);
}

input.searchAddress {
  height: 40px;
  padding: 0 36px 0 12px;
  border: 1px solid #dadce0;
  border-radius: 5px;
  background: #ffffff;
  box-sizing: border-box;
}

input.searchAddress:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(66, 133, 245, 0.18);
  outline-offset: 0;
}

#searchClear {
  position: absolute;
  right: 8px;
  top: 7px;
  width: 26px;
  height: 26px;
  border: 0;
  background: transparent;
  color: #80868b;
  cursor: pointer;
}

.multi-select-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  min-width: 100px;
  padding: 0 12px;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fa 100%);
  color: #394665;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  font-size: 10pt;
}

.multi-select-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  margin-left: auto;
  flex-shrink: 0;
  color: #6b7280;
  transition: transform 0.15s ease, color 0.15s ease;
}

.multi-select-chevron::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.multi-select.open .multi-select-chevron {
  transform: rotate(180deg);
  color: var(--blue);
}

.multi-select-toggle:hover .multi-select-chevron {
  color: #394665;
}

.multi-select-toggle:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 6px rgba(66, 133, 245, 0.25);
}

.multi-select-menu {
  left: 0;
  right: auto;
  display: none;
  min-width: 150px;
  padding: 10px 8px;
}

.multi-select.open .multi-select-menu {
  display: block;
}

.multi-select-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
}

.multi-select-option:hover {
  background: #f1f6ff;
}

.multi-select-option input[type="checkbox"] {
  transform: scale(1.15);
}

.more-menu {
  min-width: 250px;
  padding: 15px 12px;
}

.slider-container {
  margin-bottom: 18px;
}

.slider-container:last-of-type {
  margin-bottom: 8px;
}

.slider-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #394665;
  font-size: 14px;
  font-weight: 600;
}

.slider-value {
  color: var(--blue);
}

.more-slider {
  width: 100%;
}

.app-stage {
  display: flex;
  height: 100vh;
}

body.authenticated .app-stage {
  height: calc(100vh - 140px);
}

.map {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.results-panel {
  display: flex;
  flex-direction: column;
  flex: 0 0 400px;
  width: 400px;
  max-width: 42vw;
  height: 100%;
  border-left: 1px solid var(--line);
  background: var(--panel);
}

.results-panel-header {
  flex: 0 0 auto;
  padding: 14px 16px 12px;
  border-bottom: 1px solid var(--soft-line);
}

.results-search-address {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: #394665;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.results-search-address:not(:disabled) {
  cursor: pointer;
}

.results-search-address:not(:disabled):hover,
.results-search-address:not(:disabled):focus-visible {
  color: var(--blue);
  text-decoration: underline;
}

.results-search-address:disabled {
  cursor: default;
}

.results-panel-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.results-count {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.results-legend {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.results-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.results-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.results-legend-dot.onnet {
  background: #34a853;
}

.results-legend-dot.nearnet {
  background: #fbbc04;
}

.results-list {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}

.results-empty {
  margin: 0;
  padding: 24px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.results-site {
  border-bottom: 1px solid var(--soft-line);
}

.results-site.selected .results-site-header {
  background: #dfe8fd;
}

.results-site-header {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-bottom: 1px solid rgba(223, 232, 253, 0.8);
  background: #eef3ff;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.results-site-header:hover {
  background: #dfe8fd;
}

.results-site-street {
  display: block;
  color: #394665;
  font-size: 14px;
  font-weight: 700;
}

.results-site-location {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.results-site-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 6px;
  color: #56657d;
  font-size: 12px;
}

.results-carrier-rows {
  margin: 0;
  padding: 0;
  list-style: none;
}

.results-carrier-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 16px;
  border-bottom: 1px solid var(--soft-line);
  cursor: pointer;
}

.results-carrier-row:hover {
  background: #f8faff;
}

.results-carrier-row:last-child {
  border-bottom: none;
}

.results-carrier-name {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.results-carrier-badges {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(31deg, transparent 0 43%, rgba(255,255,255,0.72) 43% 45%, transparent 45% 100%),
    linear-gradient(143deg, transparent 0 48%, rgba(255,255,255,0.68) 48% 50%, transparent 50% 100%),
    linear-gradient(91deg, transparent 0 57%, rgba(255,255,255,0.62) 57% 58.5%, transparent 58.5% 100%),
    linear-gradient(7deg, transparent 0 63%, rgba(255,255,255,0.5) 63% 64%, transparent 64% 100%),
    linear-gradient(90deg, rgba(116, 134, 154, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(116, 134, 154, 0.12) 1px, transparent 1px),
    #d8e2ec;
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 52px 52px, 52px 52px, auto;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(66,133,245,0.16), transparent 24%),
    radial-gradient(circle at 80% 65%, rgba(15,127,140,0.12), transparent 26%),
    linear-gradient(115deg, transparent 0 28%, rgba(93, 167, 113, 0.18) 28% 34%, transparent 34% 100%);
}

.map-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(16deg, transparent 0 86px, rgba(66, 133, 245, 0.24) 86px 88px, transparent 88px 176px),
    repeating-linear-gradient(104deg, transparent 0 120px, rgba(255, 255, 255, 0.48) 120px 123px, transparent 123px 240px);
  opacity: 0.68;
}

.map-ready .map-placeholder {
  display: none;
}

.ol-viewport {
  background: #e8eef3;
}

.ol-attribution {
  right: 8px;
  bottom: 8px;
  max-width: calc(100% - 16px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  font-size: 11px;
  color: #64748b;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
}

.ol-attribution a {
  color: #475569;
}

.ol-control button {
  border-radius: 8px;
}

body.logged-out .ol-zoom {
  top: 16px;
  left: 16px;
}

body.authenticated .ol-zoom {
  top: 56px;
  left: 16px;
}

.ol-control {
  z-index: 20;
}

.basemap-indicator {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #1e293b;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.1);
  pointer-events: none;
}

.basemap-indicator::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #94a3b8;
}

.basemap-indicator--google::before {
  background: #1a73e8;
}

.basemap-indicator--carto::before {
  background: #f59e0b;
}

.basemap-indicator--maptiler::before {
  background: #0d9488;
}

.basemap-indicator--osm::before {
  background: #7ebc6f;
}

.map-empty-state {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(420px, calc(100% - 48px));
  padding: 24px;
  border: 1px solid rgba(208, 215, 222, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(31, 45, 61, 0.16);
  transform: translate(-50%, -50%);
}

body.logged-out .map-empty-state {
  display: none;
}

body.logged-out .map-placeholder {
  filter: saturate(0.92);
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.map-empty-state h1 {
  margin: 0 0 8px;
  font-size: 28px;
}

.map-empty-state p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.site-popup {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  width: min(380px, calc(100% - 32px));
  max-height: calc(100% - 32px);
  padding: 16px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 40px rgba(31, 45, 61, 0.18);
  overflow: hidden;
}

.site-popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: none;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.site-popup-close:hover {
  color: var(--danger);
}

.site-popup-address {
  padding-right: 28px;
  color: #394665;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.site-popup-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.site-popup-meta-item {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--soft-line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.site-popup-meta-item.exact {
  background: #e8f1ff;
  color: #2458a8;
}

.site-popup-message {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.site-popup-carriers {
  margin-top: 14px;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
}

.site-popup-carriers h3 {
  margin: 0 0 8px;
  color: #394665;
  font-size: 14px;
  font-weight: 700;
}

.site-popup-carrier-group {
  margin-bottom: 14px;
}

.site-popup-carrier-group-title {
  margin: 0 0 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--soft-line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-popup-carrier-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--soft-line);
}

.site-popup-carrier-row:last-child {
  border-bottom: none;
}

.site-popup-carrier-name {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-popup-carrier-link {
  display: inline-block;
  max-width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  font: inherit;
  font-weight: 600;
  color: var(--brand, #2563eb);
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-popup-carrier-link:hover,
.site-popup-carrier-link:focus-visible {
  text-decoration: underline;
  color: var(--brand-strong, #1d4ed8);
  outline: none;
}

.site-popup-carrier-badges {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

.site-popup-badge {
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.site-popup-badge.onnet {
  background: #e6f4ea;
  color: #137333;
}

.site-popup-badge.nearnet {
  background: #fef7e0;
  color: #b06000;
}

.site-popup-badge.service-fiber {
  background: #e8f1ff;
  color: #2458a8;
}

.site-popup-badge.service-coax {
  background: #f3e8fd;
  color: #6b3fa0;
}

.site-popup-badge.service-wireless {
  background: #e6f7f8;
  color: #0f7f8c;
}

.site-popup-empty {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-popup--primary {
  position: fixed;
  top: 50%;
  left: 40%;
  right: auto;
  z-index: 10000;
  width: min(760px, calc(100vw - 32px));
  max-height: min(88vh, 900px);
  padding: 20px 22px 24px;
  overflow-y: auto;
  transform: translate(-50%, -50%);
}

.site-popup-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-right: 24px;
  cursor: grab;
  touch-action: none;
}

.site-popup.is-dragging .site-popup-header-row {
  cursor: grabbing;
}

.site-popup.is-dragging {
  user-select: none;
}

.site-popup--primary .site-popup-address {
  flex: 1 1 auto;
  padding-right: 0;
  color: #8a8a8a;
  font-size: 15px;
}

.site-popup-actions {
  flex: 0 0 auto;
}

.site-popup-address-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-popup-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.site-popup-icon-button img {
  display: block;
}

.btn-request-pricing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 5px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.btn-request-pricing:hover {
  background: var(--blue-hover);
  color: #fff;
}

.site-popup-analysis-header,
.site-popup-api-header {
  margin: 18px 0 10px;
  color: #383838;
  font-size: 18px;
  font-weight: 700;
}

.site-popup-api-header {
  margin-top: 22px;
  font-size: 16px;
}

.site-popup-carrier-table-wrap {
  overflow-x: auto;
  border: 1px solid #d0d7de;
  border-radius: 6px;
}

.site-popup-carrier-table {
  width: 100%;
  border-collapse: collapse;
}

.site-popup-carrier-table th,
.site-popup-carrier-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--soft-line);
  text-align: left;
  vertical-align: middle;
}

.site-popup-carrier-table tr:nth-child(even) {
  background: #f9fafb;
}

.site-popup-carrier-table .site-popup-carrier-group-title {
  margin: 0;
  padding: 10px 10px 6px;
  border-bottom: 1px solid var(--soft-line);
  background: #f3f6fb;
  text-transform: uppercase;
}

.site-popup-carrier-badges-cell {
  width: 220px;
}

.site-popup-table-empty {
  padding: 16px;
  color: var(--muted);
  text-align: center;
}

.site-popup-service-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.primary-service-box {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 14px 14px 56px;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(31, 45, 61, 0.08);
}

.primary-service-box--info {
  min-height: 220px;
}

.primary-service-title {
  margin: 0 0 10px;
  color: #394665;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.primary-service-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-bottom: 10px;
}

.primary-service-logo img {
  max-width: 120px;
  max-height: 42px;
  object-fit: contain;
}

.primary-service-bar {
  position: relative;
  height: 4px;
  margin-bottom: 12px;
  border-radius: 999px;
}

.primary-service-bar.is-loading {
  height: 6px;
  overflow: hidden;
  background: rgba(66, 133, 245, 0.14) !important;
  border-radius: 999px;
}

.primary-service-bar.is-loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(66, 133, 245, 0.15) 0%,
    var(--blue) 45%,
    rgba(66, 133, 245, 0.15) 100%
  );
  animation: primary-service-progress 1.6s ease-in-out infinite;
}

.primary-service-bar.is-loading::after {
  display: none;
}

@keyframes primary-service-progress {
  0% {
    left: -40%;
  }
  100% {
    left: 100%;
  }
}

.primary-service-content {
  flex: 1 1 auto;
  color: #394665;
  font-size: 13px;
  line-height: 1.45;
}

.primary-service-loading,
.primary-service-error,
.primary-service-muted {
  color: var(--muted);
}

.primary-service-button {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  min-width: 120px;
  height: 34px;
  padding: 0 14px;
  border: none;
  border-radius: 5px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.primary-service-button:hover:not(:disabled) {
  background: var(--blue-hover);
}

.primary-service-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.login-popup {
  position: absolute;
  top: 120px;
  left: 50%;
  z-index: 6000;
  width: 360px;
  padding: 22px 24px 20px;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(31, 45, 61, 0.22);
  transform: translateX(-50%);
}

#login-header-logo-wrap {
  display: flex;
  justify-content: center;
  min-height: 48px;
}

#login-header-logo {
  max-width: 225px;
  max-height: 48px;
  object-fit: contain;
}

#login-header {
  margin: 16px 0 20px;
  text-align: center;
  color: #394665;
  font-size: 24px;
  font-weight: 700;
}

#login-form {
  margin: 0;
}

#login-fields {
  display: grid;
  gap: 8px;
}

.login-label {
  color: #394665;
  font-size: 14px;
  font-weight: 700;
}

.login-field {
  width: 100%;
  height: 42px;
  margin-bottom: 6px;
  padding: 0 10px;
  border: 1px solid #d0d7de;
  border-radius: 5px;
}

.login-field:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(66, 133, 245, 0.18);
}

.login-remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: -2px 0 4px;
  color: #394665;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}

.login-remember input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--blue);
  cursor: pointer;
}

#login-button {
  height: 42px;
  margin-top: 4px;
  border: 0;
  border-radius: 5px;
  background: var(--blue);
  color: #ffffff;
  cursor: pointer;
  font-weight: 700;
}

#login-button:hover {
  background: var(--blue-hover);
}

.login-error {
  min-height: 18px;
  color: var(--danger);
  font-size: 13px;
}

.login-footer {
  margin-top: 16px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.progress-bar-header {
  height: 4px;
  background: #d0d7de;
}

.progress-bar-content {
  width: 35%;
  height: 100%;
  background: var(--blue);
}

.status-header {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 8px 20px;
  background: #f8fbff;
  border-bottom: 1px solid var(--line);
}

[hidden] {
  display: none !important;
}

html[data-cf-auth="restoring"] #login-popup,
html[data-cf-auth="authenticated"] #login-popup {
  display: none !important;
}

html[data-cf-auth="login"] #login-popup {
  display: block !important;
}

html[data-cf-auth="restoring"] #container-header[hidden] {
  display: block !important;
}

html[data-cf-auth="restoring"] .app-stage {
  height: calc(100vh - 140px);
}

@media (max-width: 760px) {
  .app-stage {
    flex-direction: column;
  }

  .results-panel {
    flex: 0 0 42vh;
    width: 100%;
    max-width: none;
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .top-nav-row,
  .search-filter-row {
    padding-left: 12px;
    padding-right: 12px;
  }

  .rightHeader {
    gap: 8px;
    font-size: 13px;
  }

  .header-nav-links {
    display: none;
  }

  .header-nav-actions {
    padding-left: 0;
    border-left: 0;
  }

  .header-user-chip {
    max-width: 110px;
    padding: 7px 10px;
  }

  #batch-qualification,
  #link-resources {
    display: none;
  }

  .searchAddress,
  .cf-pac-wrap.searchAddress {
    width: calc(100vw - 120px);
  }

  .login-popup {
    top: 96px;
    width: min(360px, calc(100vw - 32px));
  }
}

.service-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.service-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.service-modal {
  background: #fff;
  border-radius: 8px;
  width: min(800px, 92vw);
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.service-modal.active {
  transform: scale(1);
  opacity: 1;
}

.service-modal-header,
.service-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #e0e0e0;
}

.service-modal-footer {
  border-bottom: 0;
  border-top: 1px solid #e0e0e0;
  justify-content: flex-end;
  gap: 10px;
}

.service-modal-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 1.35rem;
  color: #333;
}

.service-modal-title img {
  height: 30px;
  object-fit: contain;
}

.service-modal-close {
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  color: #777;
}

.service-modal-body {
  padding: 20px;
  font-size: calc(1rem - 2pt);
}

.service-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 4px;
  border: 0;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}

.service-modal-btn-primary {
  background: #4285f5;
  color: #fff;
}

.service-modal-btn-secondary {
  background: #f2f2f2;
  color: #333;
}

.service-details-section {
  margin-bottom: 20px;
}

.service-detail-item {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}

.service-detail-label {
  width: 140px;
  font-weight: 700;
  color: #555;
}

.service-detail-value {
  flex: 1;
}

.details-blue-box {
  background: linear-gradient(135deg, #001a70, #0033cc);
  border-radius: 8px;
  padding: 16px 18px;
  color: #fff;
  margin-bottom: 16px;
}

.details-blue-box .carrier-status {
  font-weight: 700;
  margin-bottom: 8px;
}

.details-blue-box .status-badge {
  display: inline-block;
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
}

.service-details-table {
  width: 100%;
  border-collapse: collapse;
  font-size: calc(13px - 2pt);
}

.service-details-table th,
.service-details-table td {
  border-bottom: 1px solid #e5e7eb;
  padding: 8px 10px;
  text-align: left;
}

.service-details-raw {
  background: #f7f7f7;
  padding: 12px;
  border-radius: 6px;
  overflow: auto;
  font-size: calc(12px - 2pt);
}

.zayo-locations-section h3 {
  margin: 0 0 12px;
  font-size: 16px;
  color: #231f20;
}

.zayo-no-locations {
  margin: 0;
  color: #666;
  font-size: 13px;
}

.zayo-location-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 12px;
  background: #fafbfc;
}

.zayo-location-card.preferred {
  border-color: #1dbf73;
  background: #f3fcf7;
}

.zayo-location-card h4 {
  margin: 0 0 10px;
  font-size: 14px;
  color: #231f20;
}

.zayo-location-details p {
  margin: 0 0 4px;
  font-size: 13px;
}

.zayo-services-grid h5 {
  margin: 12px 0 8px;
  font-size: 13px;
  color: #444;
}

.zayo-service-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.zayo-service-tag {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  background: #eef2ff;
  color: #231f20;
  font-size: 12px;
}

.zayo-service-tag.preferred {
  background: #1dbf73;
  color: #fff;
}

#lumen-details-overlay {
  z-index: 10060;
}

.fiber-routes-toggle {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 25;
  padding: 8px 14px;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(31, 45, 61, 0.12);
}

.fiber-routes-toggle.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.fiber-routes-panel {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 26;
  display: flex;
  flex-direction: column;
  width: min(320px, calc(100% - 32px));
  max-height: calc(100% - 32px);
  border: 1px solid #d0d7de;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 32px rgba(31, 45, 61, 0.18);
  overflow: hidden;
}

.fiber-routes-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--soft-line);
  cursor: grab;
  touch-action: none;
}

.fiber-routes-panel.is-dragging .fiber-routes-panel-header {
  cursor: grabbing;
}

.fiber-routes-panel.is-dragging {
  user-select: none;
}

.fiber-routes-panel-header h2 {
  margin: 0;
  font-size: 15px;
  color: #394665;
}

.fiber-routes-close {
  border: 0;
  background: transparent;
  color: #777;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.fiber-routes-address {
  padding: 10px 14px 0;
  color: #6b7280;
  font-size: 12px;
}

.fiber-routes-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--soft-line);
  font-size: 13px;
}

.fiber-routes-refresh {
  margin-left: auto;
  padding: 4px 10px;
  border: 1px solid #d0d7de;
  border-radius: 4px;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  cursor: pointer;
}

.fiber-routes-checkboxes {
  flex: 1 1 auto;
  overflow: auto;
  padding: 12px 14px 16px;
  font-size: 13px;
}

.fiber-routes-error {
  color: #c5221f;
}

.fiber-routes-checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.fiber-routes-carrier-name {
  flex: 1 1 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.fiber-routes-carrier-name:hover {
  color: var(--blue);
  text-decoration: underline;
}

.carrier-info-section + .carrier-info-section {
  margin-top: 18px;
}

.carrier-info-section h3 {
  margin: 0 0 10px;
  font-size: 15px;
  color: #394665;
}

.carrier-info-overview {
  margin: 12px 0 0;
  white-space: pre-wrap;
}

.carrier-info-partner {
  margin-top: 8px;
  color: var(--blue);
  font-weight: 600;
}

.carrier-info-links,
.carrier-info-suppliers {
  margin: 0;
  padding-left: 18px;
}

.carrier-info-links li + li,
.carrier-info-suppliers li + li {
  margin-top: 10px;
}

.carrier-info-link-desc {
  margin-top: 4px;
  color: #6b7280;
  font-size: 12px;
}

.fiber-routes-swatch {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.fiber-route-popup {
  position: relative;
  min-width: 180px;
  padding: 12px 14px 10px;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(31, 45, 61, 0.18);
}

.fiber-route-popup-close {
  position: absolute;
  top: 4px;
  right: 8px;
  border: 0;
  background: transparent;
  color: #777;
  font-size: 18px;
  cursor: pointer;
}

.quote-chat-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10040;
  background: rgba(15, 23, 42, 0.28);
}

body.quote-chat-open {
  overflow: hidden;
}

.quote-chat-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10050;
  display: flex;
  flex-direction: column;
  width: min(440px, 100vw);
  height: 100vh;
  background: #fff;
  box-shadow: -12px 0 32px rgba(31, 45, 61, 0.18);
}

.quote-chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 12px;
  border-bottom: 1px solid var(--soft-line);
}

.quote-chat-header h2 {
  margin: 0;
  font-size: 22px;
  color: #1f2d3d;
}

.quote-chat-context {
  margin: 6px 0 0;
  color: #6b7280;
  font-size: 12px;
}

.quote-chat-close {
  border: 0;
  background: transparent;
  color: #777;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.quote-chat-transcript {
  flex: 1 1 auto;
  overflow: auto;
  padding: 16px 18px 12px;
}

.quote-chat-footer {
  padding: 12px 18px 16px;
  border-top: 1px solid var(--soft-line);
}

.quote-chat-progress-label {
  margin-bottom: 8px;
  color: #6b7280;
  font-size: 12px;
}

.quote-chat-progress-track {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(66, 133, 245, 0.14);
}

.quote-chat-progress-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
  transition: width 0.25s ease;
}

.cf-chat-message {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  animation: cfChatFadeIn 0.28s ease-out;
}

.cf-chat-message-user {
  justify-content: flex-end;
}

.cf-chat-message-user .cf-chat-bubble {
  margin-left: auto;
}

@keyframes cfChatFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cf-chat-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, #7aa6f1 100%);
  flex: 0 0 auto;
}

.cf-chat-avatar svg {
  width: 18px;
  height: 18px;
}

.cf-chat-avatar-step {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.cf-chat-bubble {
  max-width: calc(100% - 48px);
  padding: 12px 14px;
  border-radius: 12px;
  border-top-left-radius: 4px;
  background: #f3f6fb;
  color: #333;
  font-size: 14px;
  line-height: 1.45;
}

.cf-chat-bubble.user-response {
  border-radius: 12px;
  border-top-right-radius: 4px;
  background: var(--blue);
  color: #fff;
}

.cf-chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.cf-chat-option-btn,
.quote-chat-secondary-btn,
.cf-chat-submit-btn {
  cursor: pointer;
}

.cf-chat-option-btn {
  padding: 9px 14px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.cf-chat-option-btn.is-selected,
.cf-chat-option-btn:hover:not(.is-disabled) {
  background: rgba(66, 133, 245, 0.08);
}

.cf-chat-option-btn.is-selected {
  background: var(--blue);
  color: #fff;
}

.cf-chat-option-btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.cf-chat-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.cf-chat-submit-btn,
.quote-chat-secondary-btn {
  padding: 10px 18px;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.cf-chat-submit-btn {
  background: var(--blue);
  color: #fff;
}

.quote-chat-secondary-btn {
  border: 1px solid #d0d7de;
  background: #fff;
  color: var(--blue);
}

.quote-chat-inline-actions {
  margin-top: 10px;
}

.quote-chat-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
  font-size: 12px;
  color: #555;
}

.quote-chat-field-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.quote-chat-remove-btn {
  border: 0;
  background: transparent;
  color: #b42318;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.quote-chat-remove-btn:hover {
  color: #912018;
}

.quote-chat-input,
.quote-chat-textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  font: inherit;
  box-sizing: border-box;
}

.quote-chat-textarea {
  min-height: 84px;
  resize: vertical;
}

.quote-chat-hint {
  display: block;
  margin-top: 6px;
  color: #6b7280;
  font-size: 12px;
}

.quote-chat-link-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}

.quote-chat-contact-form {
  margin-top: 4px;
}

.quote-chat-summary {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.quote-chat-summary-row {
  display: grid;
  gap: 2px;
  font-size: 13px;
}

.quote-chat-summary-row span {
  color: #6b7280;
}

.quote-chat-tracking {
  margin: 12px 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
}

.cf-chat-typing-dots {
  display: flex;
  gap: 4px;
}

.cf-chat-typing-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: cfChatTyping 1.4s infinite ease-in-out;
}

.cf-chat-typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.cf-chat-typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes cfChatTyping {
  0%,
  60%,
  100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-5px);
  }
}
