* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #194C62;
  --secondary-color: #C98028;
  --tertiary-color: #DCE2E4;
  --white: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  overflow: hidden;
  color: var(--text-primary);
  background: var(--white);
  display: flex;
  height: 100vh;
}

/* Left Sidebar */
.left-sidebar {
  width: 30%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.sidebar-placeholder {
  padding: 0 0 30px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.sidebar-placeholder h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0;
}

#chatkit-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Main Content Area */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* Map Wrapper with Rounded Corners */
.map-wrapper {
  flex: 1;
  margin: 20px;
  border-radius: 12px;
  overflow: visible;
  background: var(--white);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 0;
  position: relative;
}


#map {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

/* Floating Search Group */
.floating-search-group {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px;
  z-index: 1000;
  min-width: 100px;
  max-width: calc(100% - 30px);
}

.search-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}


.search-type-wrapper {
  flex-shrink: 0;
}

.search-type-dropdown {
  padding: 12px 12px;
  border: 1px solid var(--tertiary-color);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  background: var(--white);
  color: var(--text-primary);
  cursor: pointer;
  min-width: 120px;
  transition: all 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23194C62' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.search-type-dropdown:hover {
  border-color: var(--primary-color);
}

.search-type-dropdown:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(25, 76, 98, 0.1);
}

.toggle-btn {
  background: #4a4a4a;
  color: var(--white);
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.toggle-btn:hover {
  background: #3a3a3a;
}

.toggle-chevron {
  font-size: 12px;
  font-weight: 600;
}

.zoning-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.see-all-link {
  color: var(--primary-color);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  margin-left: auto;
  padding-left: 12px;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.see-all-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 12px;
  right: 0;
  height: 2px;
  background: var(--secondary-color);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.see-all-link:hover {
  color: var(--secondary-color);
}

.see-all-link:hover::after {
  transform: scaleX(1);
}

.autocomplete-wrapper {
  flex: 1;
  position: relative;
  min-width: 0;
}

#address-search {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--tertiary-color);
  border-radius: var(--radius-md);
  font-size: 14px;
  transition: all 0.2s ease;
  background: var(--white);
  color: var(--text-primary);
}

#address-search:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(25, 76, 98, 0.1);
}

#address-search::placeholder {
  color: var(--text-secondary);
}

.autocomplete-wrapper {
  position: relative;
}

.autocomplete-results {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--tertiary-color);
  border-radius: var(--radius-md);
  margin-bottom: 4px;
  max-height: 240px;
  overflow-y: auto;
  z-index: 10000;
  display: none;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

.autocomplete-item {
  padding: 14px 16px;
  cursor: pointer;
  font-size: 14px;
  border-bottom: 1px solid var(--tertiary-color);
  transition: all 0.2s ease;
  color: var(--text-primary);
}

.autocomplete-item:hover {
  background: var(--tertiary-color);
  padding-left: 20px;
}

.autocomplete-item:last-child {
  border-bottom: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.autocomplete-item:first-child {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.search-btn {
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-btn:hover {
  background: #b06d1f;
  transform: translateY(-1px);
}

.search-btn:active {
  transform: translateY(0);
}

.search-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.search-btn:disabled:hover {
  background: var(--secondary-color);
  transform: none;
}

.settings-icon-btn {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  color: #666;
}

.settings-icon-btn:hover {
  background: var(--tertiary-color);
}

.settings-icon-btn svg {
  display: block;
}


.filter-section {
  background: var(--white);
}

.zoning-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.zoning-column {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--tertiary-color);
}

.section-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.simple-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--tertiary-color);
}

.simple-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.simple-header .checkbox-label {
  margin: 0;
  padding: 0;
}

.zoning-layers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--tertiary-color);
}

.zoning-header-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  padding: 0;
}

.zoning-header-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--primary-color);
  margin: 0;
}

.see-all-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 0;
  margin: 0;
}

.see-all-btn:hover {
  color: var(--primary-color);
}

.see-all-arrow {
  font-size: 12px;
  font-weight: 600;
}

.zoning-layers-content {
  margin-top: 16px;
}

.zoning-group {
  margin-bottom: 20px;
}

.group-title {
  font-weight: 600;
  font-size: 13px;
  color: var(--text-primary);
  margin-bottom: 10px;
  padding-bottom: 6px;
  text-transform: none;
  letter-spacing: 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  padding: 6px 0;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-primary);
  user-select: none;
  transition: all 0.2s ease;
  margin-bottom: 2px;
  gap: 10px;
}

.checkbox-label:hover {
  color: var(--primary-color);
}

.color-square {
  width: 16px;
  height: 16px;
  border-radius: 2px;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline-block;
}

.checkbox-label input[type="checkbox"] {
  cursor: pointer;
  width: 16px;
  height: 16px;
  accent-color: var(--primary-color);
  flex-shrink: 0;
  margin: 0;
}

.checkbox-label span:last-child {
  flex: 1;
  font-weight: 400;
}

/* Error Toast */
.error-toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 320px;
  max-width: 520px;
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid var(--white);
}

.error-toast.hidden {
  display: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.close-error-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  opacity: 0.8;
}

.close-error-btn:hover {
  opacity: 1;
}

/* Settings Sidebar */
.settings-sidebar {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 500px; /* Match floating-search-group min-width */
  background: var(--white);
  border-radius: var(--radius-md);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  border: 1px solid #666;
  overflow: hidden;
  bottom: calc(15px + 60px + 15px); /* 15px gap + search group height + 15px from bottom */
  min-height: 300px;
}

.settings-sidebar.hidden {
  display: none;
}

.settings-sidebar-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0f3a4a 100%);
  color: var(--white);
  flex-shrink: 0;
}

.settings-sidebar-header h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.5px;
}

.settings-sidebar-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  background: #fafbfc;
  flex-shrink: 0;
}

.settings-tab-btn {
  flex: 1;
  padding: 14px 12px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-secondary);
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.settings-tab-btn:hover {
  background: var(--white);
  color: var(--primary-color);
}

.settings-tab-btn.active {
  color: var(--primary-color);
  border-bottom: 1px solid var(--secondary-color);
  font-weight: 700;
  background: var(--white);
}

.settings-sidebar-content {
  overflow-y: auto;
  flex: 1;
  background: white;
  min-height: 0;
}

.settings-tab-content {
  display: none;
  padding: 24px;
}

.settings-tab-content.active {
  display: block;
}

.settings-section {
  margin-bottom: 24px;
}

.settings-section:last-child {
  margin-bottom: 0;
}

.settings-section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.settings-divider {
  height: 1px;
  background: var(--tertiary-color);
  margin: 20px 0;
  border-radius: 0;
}

.zoning-group {
  margin-bottom: 20px;
}

.zoning-group:last-child {
  margin-bottom: 0;
}

.zoning-layers-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Search Results Sidebar (Bottom Right) */
.search-results-sidebar {
  position: absolute;
  top: 15px;
  bottom: 15px;
  right: 15px;
  width: 520px;
  max-width: calc(100% - 430px);
  background: var(--white);
  border-radius: var(--radius-md);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #666;
  overflow: hidden;
}

.search-results-sidebar.hidden {
  display: none;
}

.search-results-sidebar.collapsed {
  top: auto;
  bottom: 15px;
  height: auto;
  max-height: 60px;
  width: 500px; /* Match floating search group width when collapsed */
}

.search-results-sidebar.collapsed .sidebar-content {
  display: none;
}

.collapse-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 14px;
  color: var(--white);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  margin-right: 8px;
}

.collapse-btn:hover {
  background: rgba(255,255,255,0.25);
}

.search-results-sidebar.collapsed .collapse-btn {
  transform: rotate(180deg);
}

/* Collapsed search results positioning is handled by JavaScript */

/* Parcel Sidebar (Top Right) */
.parcel-sidebar {
  position: absolute;
  top: 15px;
  bottom: 15px;
  right: 15px;
  width: 520px;
  max-width: calc(100% - 430px);
  background: var(--white);
  border-radius: var(--radius-md);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  border: 1px solid #666;
  overflow: hidden;
}

.parcel-sidebar.hidden {
  display: none;
}

.sidebar-header {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0f3a4a 100%);
  color: var(--white);
}

.sidebar-header h3 {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.5px;
}

.sidebar-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  overflow-x: auto;
  background: #fafbfc;
  padding: 0 12px;
  scrollbar-width: none;
}

.sidebar-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  flex: 1;
  padding: 16px 16px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-secondary);
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tab-btn:hover {
  background: var(--white);
  color: var(--primary-color);
}

.tab-btn.active {
  color: var(--primary-color);
  border-bottom: 1px solid var(--secondary-color);
  font-weight: 700;
  background: var(--white);
}

.tab-content {
  display: none;
  flex: 1;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

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


.close-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 22px;
  color: var(--white);
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  font-weight: 300;
}

.close-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  transform: scale(1.05) rotate(90deg);
}

.sidebar-content {
  overflow-y: auto;
  flex: 1;
  background: white;
}

/* Search Results Sidebar specific content padding */
.search-results-sidebar .sidebar-content {
  padding: 24px 28px;
}

.parcel-details-view {
  padding: 24px 28px;
}

.search-results-header {
  margin-bottom: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.search-results-header h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: -0.3px;
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}

/* Sort container styling */
.sort-container {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: none;
  margin-bottom: 16px;
}

.sort-container label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.sort-container select {
  padding: 8px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: white;
  cursor: pointer;
  flex: 1;
  min-width: 200px;
  transition: border-color 0.2s ease;
}

.sort-container select:hover {
  border-color: var(--primary-color);
}

.sort-container select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(25, 76, 98, 0.1);
}

.search-result-item {
  padding: 20px 24px;
  background: #fafbfc;
  border: 1px solid var(--tertiary-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 0;
}

.search-result-item:hover {
  background: var(--white);
  border-color: var(--primary-color);
  transform: translateX(6px);
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.result-owner {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-color);
}

.result-parcel-id {
  font-size: 11px;
  color: var(--text-secondary);
  background: var(--tertiary-color);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.result-address {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.parcel-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-row {
  padding: 8px 0;
  border-bottom: 1px solid var(--tertiary-color);
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 0;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row strong {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-row > span:not(strong) {
  color: var(--text-primary);
  font-size: 15px;
  word-break: break-word;
  font-weight: 500;
}

/* Enhanced visual hierarchy */
.parcel-info .info-row:first-child {
  padding-top: 0;
}

.parcel-info .info-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

/* Parcel Map Container */
#parcel-map-container {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--tertiary-color);
}

.measure-controls {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.measure-btn {
  flex: 1;
  padding: 12px 16px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
  min-width: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.measure-btn:hover {
  background: #0f3a4a;
  transform: translateY(-1px);
}

.measure-btn:active {
  transform: translateY(0);
}

#clear-measure-btn {
  background: #dc3545;
}

#clear-measure-btn:hover {
  background: #c82333;
}

.dimensions-info {
  margin-top: 20px;
  padding: 16px;
  background: linear-gradient(135deg, #fafbfc 0%, var(--tertiary-color) 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--tertiary-color);
}

.dim-row {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}

.dim-row strong {
  color: var(--primary-color);
  margin-right: 12px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.dim-row.tax-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dim-row.tax-row span {
  font-weight: 500;
  color: var(--text-primary);
}

.show-more-link {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-left: auto;
}

.show-more-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Scrollbar styling */
.control-panel-content::-webkit-scrollbar,
.sidebar-content::-webkit-scrollbar,
.autocomplete-results::-webkit-scrollbar {
  width: 10px;
}

.control-panel-content::-webkit-scrollbar-track,
.sidebar-content::-webkit-scrollbar-track,
.autocomplete-results::-webkit-scrollbar-track {
  background: var(--tertiary-color);
  border-radius: var(--radius-sm);
}

.control-panel-content::-webkit-scrollbar-thumb,
.sidebar-content::-webkit-scrollbar-thumb,
.autocomplete-results::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: var(--radius-sm);
  border: 1px solid var(--tertiary-color);
}

.control-panel-content::-webkit-scrollbar-thumb:hover,
.sidebar-content::-webkit-scrollbar-thumb:hover,
.autocomplete-results::-webkit-scrollbar-thumb:hover {
  background: #0f3a4a;
}

/* Additional modern touches */
.zoning-header {
  margin-bottom: 12px;
}

.zoning-layers-group {
  margin-top: 16px;
  padding-left: 8px;
  border-left: 1px solid var(--secondary-color);
}
