/* Base */
body,
html {
  height: 100%;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

/* Utility spacing (small subset) */
.mt-1 {
  margin-top: 6px;
}
.mt-2 {
  margin-top: 10px;
}
.mt-3 {
  margin-top: 14px;
}
.mb-1 {
  margin-bottom: 6px;
}
.mb-2 {
  margin-bottom: 10px;
}
.p-2 {
  padding: 8px;
}

/* Sidebar & map layout */
#mapContainer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: margin-left 0.3s ease-in-out;
}
.sidebar.active ~ #mapContainer {
  margin-left: 250px;
}

#map {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* Accordion / collapses */
.accordion-toggle {
  /* background: #2a2a40; */
  background-color: #75a99b;
  color: white;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  margin: 6px 0;
  display: block;
  line-height: 1.2;
}

.accordion-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.accordion-toggle.active {
  /* background: #3a3a55; */
  color: #fff;
}
.collapse-panel {
  display: none;
  padding: 8px 10px;
}
.collapse-panel.active {
  display: block;
  background: transparent;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent; /* Base border for alignment */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.btn.sm {
  padding: 4px 8px;
  font-size: 13px;
}
.btn.primary {
  background-color: #007bff;
  color: #fff;
}
.btn.secondary {
  background-color: #6c757d;
  color: #fff;
}
.btn.success {
  background-color: #28a745;
  color: #fff;
}
.btn.warning {
  background-color: #ffc107;
  color: #000;
}
.btn.danger {
  background-color: #dc3545;
  color: #fff;
}
.btn.light {
  background: #fff;
  color: #000;
}
.btn.dark {
  background: #4db397;
  color: #fff;
}

/* Outline commen button */
.common-outline-btn-primary {
  background-color: transparent;
  border: 1px solid #007bff;
  color: #007bff;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
  padding: 3px 7px 3px 7px;
  border-radius: 5px;
}
.common-outline-btn-primary:hover {
  background-color: #007bff;
  color: #fff;
}

.common-outline-btn-warning {
  background-color: transparent;
  border: 1px solid #ffc107;
  color: #e7ad00;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
  padding: 3px 7px 3px 7px;
  border-radius: 5px;
}
.common-outline-btn-warning:hover {
  background-color: #ffc107;
  color: #ffff;
}

.common-outline-btn-danger {
  background-color: transparent;
  border: 1px solid #dc3545;
  color: #dc3545;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
  padding: 3px 7px 3px 7px;
  border-radius: 5px;
}
.common-outline-btn-danger:hover {
  background-color: #dc3545;
  color: #fff;
}

/* Outline Buttons */
.btn.outline-success {
  background-color: transparent;
  border: 1px solid #28a745;
  color: #28a745;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}
.btn.outline-success:hover {
  background-color: #28a745;
  color: #fff;
}

.btn-success {
  background-color: transparent;
  border: 1px solid #28a745;
  color: #0eba36;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
  padding: 3px 7px 3px 7px;
  border-radius: 5px;
}
.btn-success:hover {
  background-color: #28a745;
  color: #fff;
}
.btn-secondary {
  background-color: transparent;
  border: 1px solid #2a332c;
  color: #2a332c;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
  padding: 3px 7px 3px 7px;
  border-radius: 5px;
}
.btn-secondary:hover {
  background-color: #2a332c;
  color: #fff;
}

/* Inputs */
.form-input {
  width: 100%;
  padding: 7px 10px;
  font-size: 13px;
  border-radius: 6px;
  border: 1px solid #cfcfcf;
  box-sizing: border-box;
}

/* Search container for icon */
.search-container {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none; /* So you can click through it */
}

/* Add padding to the input to make space for the icon */
#searchInput {
  padding-left: 35px !important;
}

/* Search results list item */
#searchResults {
  list-style: none;
  padding: 0;
  margin: 6px 0 0 0;
  z-index: 2000;
}
#searchResults .list-item {
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  background: #fff;
  color: #111;
}
#searchResults .list-item:hover {
  background: #f0f0f0;
}
#searchResults mark {
  background: #ffeb3b;
}

/* Tooltip base */
.toggle-btn {
  position: relative;
}

/* Tooltip text (hidden by default) */
.toggle-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -35px; /* distance below button */
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 2000;
}

/* Show on hover */
.toggle-btn:hover::after {
  opacity: 1;
}

/* Toggle button base style */
.toggle-btn {
  position: absolute;
  top: 5px;
  width: 35px;
  height: 35px;
  padding: 0;
  z-index: 900;
  border-radius: 8px;
  transition: all 0.25s ease;
  transform: scale(1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Positioning for each toggle button */
#toggleBtn {
  left: 5px;
}
#toggleBtn1 {
  left: 45px;
}
#toggleBtn2 {
  left: 85px;
}

.toggle-btn.dark {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Highlight on hover */
.toggle-btn:hover {
  background: linear-gradient(135deg, #5d8875, #36aca1);
  transform: scale(1.15); /* grow 15% */
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.6); /* blue glow */
}

/* Style for SVG icons inside buttons */
.toggle-btn > svg {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  stroke: currentColor; /* Use the button's text color for the stroke */
  stroke-width: 2;
  fill: none; /* Ensure SVGs are not filled by default */
}

#toolsBox1,
#toolsBox2,
#toolsBox3 {
  display: none;
  position: absolute;
  top: 80px;
  left: 15px;
  width: 350px;
  background: #1e1e2f;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  padding: 12px;
  z-index: 1200;
  max-height: 75vh;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

/* Show when active */
#toolsBox1.active,
#toolsBox2.active,
#toolsBox3.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.tools-menu1 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tools-menu2 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tools-menu3 {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Mapbox control look (small) */
.mapboxgl-ctrl-locate {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mapboxgl-ctrl-locate:hover {
  background: #f0f0f0;
}

/* Reset Button */
.reset-btn {
  position: absolute;
  top: 10px;
  right: 45px;
  background: #4db397;
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 3;
  transition: all 0.25s ease;
}

/* Tooltip for reset button */
.reset-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 2000;
}
.reset-btn:hover {
  background: linear-gradient(135deg, #5d8875, #36aca1);
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.6);
}
.reset-btn:hover::after {
  opacity: 1;
}

/* Coordinates */
#coords {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #fff;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 5;
  color: #000;
}

/* Basemap gallery */
#basemapGallery {
  position: absolute;
  bottom: 60px;
  right: 10px;
  z-index: 5;
}
#basemapBtn {
  background: #4db397;
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100px;
}
.basemap-list {
  display: none;
  position: absolute;
  bottom: 50px;
  left: 20%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  width: 140px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  max-height: 250px;
  overflow-y: auto;
  -webkit-scrollbar: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.basemap-option {
  margin-bottom: 8px;
  text-align: center !important;
  cursor: pointer;
}
.basemap-option img {
  width: 100px;
  height: 60px;
  border-radius: 6px;
  border: 2px solid #ddd;
  margin-left: auto;
  margin-right: auto;
  transition: border 0.15s ease;
}
.basemap-option img:hover {
  border-color: #0078d7;
}
.basemap-option span {
  font-size: 12px;
  display: block;
  margin-top: 6px;
  color: #000 !important;
  text-align: center !important;
}

/* Popup styling */
.mapboxgl-popup {
  max-width: 360px !important;
}
.mapboxgl-popup-content {
  /* padding: 14px; */
  border-radius: 12px;
  /* background: #fff; */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  font-size: 13px;
  max-width: 410px;
  line-height: 1.4;
}
.popup-content h5 {
  margin: 0 0 8px 0;
  font-size: 16px;
}
.price-row {
  /* background: #ecfff9; */
  background: #edfbfa;
  padding: 8px;
  border-left: 4px solid #30a586;
  border-radius: 6px;
  margin-bottom: 8px;
  color: #0e8c65;
}
.price-row span {
  font-weight: 600;
  color: #042744;
}
/* On small screens, take most of width */
@media (max-width: 600px) {
  .mapboxgl-popup-content {
    max-width: 90vw !important;
    font-size: 14px;
    /* padding: 12px; */
  }
}

/* badges */
.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
}
.badge-primary {
  background: #007bff;
  color: #fff;
}
.badge-info {
  background: #d1ecf1;
  color: #0c5460;
}

/* popup actions */
.popup-actions {
  display: flex;
  gap: 8px;
  margin-top: 13px;
}

/* form popup */
.popup-form-wrapper {
  display: flex;
  flex-direction: column;
  /* width: 320px; */
  /* Let height be determined by content */
}
.popup-form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid #ddd;
  background: #f8f9fa;
}
.popup-form-body {
  flex: 1;
  overflow: auto;
  padding: 16px;
  max-height: 60vh; /* Set a max-height for scrolling on very long forms */
}
.popup-form-footer {
  padding: 8px 12px;
  border-top: 1px solid #ddd;
  background: #f8f9fa;
  text-align: right;
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

/* heatmap legend */
.heatmap-legend {
  position: absolute;
  bottom: 80px;
  left: 20px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  font-size: 13px;
}
.heatmap-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.heatmap-legend .legend-color {
  width: 18px;
  height: 18px;
  border-radius: 3px;
}

/* === Position Mapbox Geocoder === */
.mapboxgl-ctrl-geocoder {
  position: absolute !important;
  top: 0px; /* distance from top */
  right: 75px; /* distance from left */
  width: 100px;
  height: 35px;
  font-size: 12px;
  z-index: 9999;
  text-align: left;
}

.mapboxgl-ctrl-bottom-left {
  transition: left 0.3s ease-in-out;
  left: 10px; /* default position */
}

.sidebar.active ~ #mapContainer .mapboxgl-ctrl-bottom-left {
  left: 30px; /* shift when sidebar is open (≈ sidebar width + padding) */
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  /* Stack toggle buttons vertically */
  #toggleBtn {
    top: 10px;
    left: 10px;
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  #toggleBtn1 {
    top: 55px; /* move below first button */
    left: 10px;
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  #toggleBtn2 {
    top: 100px; /* move below second button */
    left: 10px;
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  /* Tools boxes take almost full width */
  #toolsBox1,
  #toolsBox2,
  #toolsBox3 {
    top: 150px;
    left: 10px;
    right: 10px;
    width: 300px;
    max-width: calc(100% - 20px);
    max-height: 60vh;
  }

  /* Geocoder shrinks */
  .mapboxgl-ctrl-geocoder {
    width: 200px !important;
    height: 40px !important;
    right: 80px !important;
    font-size: 14px !important;
    top: 0px !important; /* below buttons */
  }

  /* Reset button smaller */
  .reset-btn {
    top: 10px;
    right: 50px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  /* Coordinates smaller */
  #coords {
    font-size: 10px;
    padding: 4px 6px;
  }

  .basemap-list {
    max-height: 180px; /* shorter scroll area on small screens */
  }
}

/* --- Force consistent colors across light/dark browser modes --- */

/* General body background */
body {
  background: #fff !important;
  color: #000 !important;
}

/* Search results */
#searchResults,
#searchResults .list-item {
  background: #fff !important;
  color: #000 !important;
}

/* Popup box */
.mapboxgl-popup-content {
  background: #fff !important;
  color: #000 !important;
}
/* .mapboxgl-popup-content * {
  color: #000;
} */

/* Inputs (like search bar) */
.form-input,
#searchInput {
  background: #fff !important;
  color: #000 !important;
}

/* Heatmap legend */
.heatmap-legend {
  background: #fff !important;
  color: #000 !important;
}

/* Tools panels */
#toolsBox1,
#toolsBox2,
#toolsBox3 {
  background: #fff !important;
  color: #000 !important;
}

.mapboxgl-ctrl.mapboxgl-ctrl-group button {
  color: #000;
}
/* --- Force all text left aligned --- */

/* Global text */
body,
#searchResults,
#searchResults .list-item,
.mapboxgl-popup-content,
.form-input,
#searchInput,
.heatmap-legend,
#toolsBox1,
#toolsBox2,
#toolsBox3,
.mapboxgl-ctrl-geocoder {
  text-align: left !important;
}

/* --- Force black font for all tool texts --- */
.accordion-toggle,
.accordion-toggle *,
#toolsBox1 label,
#toolsBox2 label,
#toolsBox3 label,
#toolsBox1 .menu-text,
#toolsBox2 .menu-text,
#toolsBox3 .menu-text {
  text-align: left !important;
}

/* Edit Popup Improvements */
.popup-form-wrapper {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.popup-form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0078d7;
  color: #fff;
  padding: 8px 12px;
  cursor: move; /* draggable cursor */
}

.popup-form-header h3 {
  margin: 0;
  font-size: 15px;
}

.popup-close-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}

.popup-close-btn:hover {
  color: #ff4d4f; /* bright red hover */
}
.mapboxgl-popup-close-button {
  background-color: transparent;
  border: 0;
  border-radius: 0 3px 0 0;
  cursor: pointer;
  position: absolute;
  right: 15px !important;
  font-size: 20px !important;
  top: 10px !important;
  /* color: white; */
}

/* Main container for the actions menu */
.popup-content-actions {
  background-color: #ffffff;
  border-radius: 8px;
  color: #333;
  text-align: center;
  width: 150px;
}

.action-menu-title {
  display: block;
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 16px;
  color: #30a586; /* Primary accent color */
}

.action-buttons-group {
  display: flex;
  flex-direction: column;
  gap: 8px; /* Space between buttons */
}

.action-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.1s ease,
    box-shadow 0.2s ease;
}

.action-button i {
  margin-right: 8px;
  font-size: 1.1em;
}

/* --- Primary Action (Verify Property) --- */
.primary-action {
  background-color: #549080;
  color: #ffffff;
  box-shadow: rgba(79, 70, 229, 0.3) 0px 4px 10px -3px;
}

.primary-action:hover {
  background-color: #abc6bf;
  transform: translateY(-1px);
  box-shadow: rgba(79, 70, 229, 0.4) 0px 6px 12px -4px;
}

.primary-action:active {
  background-color: #549080;
  transform: translateY(0);
  box-shadow: none;
}

/* --- Secondary Action (List Property) --- */
.secondary-action {
  background-color: #f1f5f9; /* Light Gray */
  color: #333;
  border: 1px solid #cbd5e1;
}

.secondary-action:hover {
  background-color: #e2e8f0; /* Slightly darker gray */
  transform: translateY(-1px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

.secondary-action:active {
  background-color: #cbd5e1; /* Even darker gray */
  transform: translateY(0);
  box-shadow: none;
}

/* Map Keys Box */
.map-keys-box {
  position: absolute;
  bottom: 110px;
  right: 10px;
  background: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 4;
  display: flex;
  width: 78px;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  color: #000;
}

#map-key {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
}

#map-key p {
  margin: 0;
}

#map-key img {
  width: 18px;
  height: 21px;
}

/*Popup Card Styling */
.popup-card {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  color: #333;
  max-width: 350px;
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.popup-header h4 {
  margin: 0;
  font-size: 1.2em;
  font-weight: 600;
  color: #1a202c;
  text-transform: capitalize;
}

.price {
  font-size: 1.1em;
  font-weight: 800;
  color: #38a169;
  background-color: #f0fff4;
  padding: 4px 4px;
  border-radius: 8px;
}

.address {
  font-size: 1em;
  color: #718096;
  margin-bottom: 12px;
  line-height: 1.4;
}

.details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 0.95em;
  margin-bottom: 16px;
}

.details p {
  margin: 0;
  background-color: #f7fafc;
  padding: 6px;
  border-radius: 8px;
  border: 1px solid #edf2f7;
  color: #4a5568;
}

.details p strong {
  color: #2d3748;
  font-weight: 600;
}

.desc {
  font-size: 0.9em;
  color: #4a5568;
  line-height: 1.6;
  margin-top: 16px;
  background-color: #f7fafc;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #edf2f7;
}

/* Responsive adjustments for the popup card */
@media (max-width: 768px) {
  .popup-card {
    max-width: 220px;
    padding: 15px;
  }

  .popup-header h4 {
    font-size: 1.1em;
  }

  .price {
    font-size: 1em;
  }

  .details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .popup-card {
    max-width: 220px;
    padding: 10px;
  }

  .popup-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .popup-header h4 {
    font-size: 1em;
  }

  .price {
    font-size: 0.9em;
    align-self: flex-end;
  }

  .address {
    font-size: 0.9em;
  }

  .details {
    font-size: 0.85em;
  }

  .desc {
    font-size: 0.8em;
  }
}

/* Remove default mapbox popup styles */
/* .mapboxgl-popup-content {
  padding: 0;
  background: transparent;
  box-shadow: none;
} */

/* New styles for the attractive popup */
.custom-popup-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;

  width: 320px;
  max-width: 90vw; /* Responsive width */
  max-height: 360px; /* Max popup height */
  overflow-y: auto; /* Scroll content if needed */
  overflow-x: auto;

  border-top: 5px solid #6d28d9; /* Accent color */
  height: 300px;
  overflow-x: auto;
  overflow-y: auto;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.custom-popup-card::-webkit-scrollbar {
  display: none;
}

/* Small screens (phones) */
@media (max-width: 480px) {
  .custom-popup-card {
    width: 100%;
    max-height: 85vh; /* Better fit on small devices */
    border-radius: 10px;
  }
}

.custom-popup-card .custom-popup-header {
  background-color: #f3f4f6;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
}

.custom-popup-card .custom-popup-header h4 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
}

.custom-popup-card .custom-popup-header .badge {
  background-color: #ecfdf5;
  color: #065f46;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.custom-popup-card .custom-popup-body {
  padding: 8px 16px 12px;
}

.custom-popup-card .info-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed #e5e7eb;
}

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

.custom-popup-card .info-label {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
}

.custom-popup-card .info-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1f2937;
  text-align: right;
  white-space: nowrap;
  /* overflow: hidden; */
  /* text-overflow: ellipsis; */
}

/* ===== MOBILE-FIRST ULTRA COMPACT - LESS PROMINENT ===== */

/* Base - Very subtle on mobile */
.custom-popup-card {
  width: 240px !important; /* Much smaller on mobile */
  max-height: 70vh !important; /* Less screen coverage */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important; /* Lighter shadow */
  border-top: 2px solid #6d28d9 !important; /* Thinner accent */
  font-size: 11px !important; /* Smaller base font */
  opacity: 0.95; /* Slightly transparent */
}

/* Very small mobile devices */
@media (max-width: 375px) {
  .custom-popup-card {
    width: 220px !important;
    max-height: 65vh !important;
    font-size: 10px !important;
  }
}

/* Tablet - Start getting more visible */
@media (min-width: 768px) {
  .custom-popup-card {
    width: 300px !important;
    max-height: 75vh !important;
    font-size: 12px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
    border-top: 3px solid #6d28d9 !important;
    opacity: 1;
  }
}

/* Desktop - Full prominence */
@media (min-width: 1024px) {
  .custom-popup-card {
    width: 340px !important;
    max-height: 480px !important;
    font-size: 13px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
    border-top: 4px solid #6d28d9 !important;
  }
}

/* Large desktop */
@media (min-width: 1440px) {
  .custom-popup-card {
    width: 360px !important;
    max-height: 520px !important;
    font-size: 14px !important;
  }
}

/* Minimal header on mobile */
.custom-popup-card .custom-popup-header {
  background: #6d28d9 !important; /* Solid color on mobile */
  padding: 6px 10px !important; /* Tight padding */
  border-bottom: none !important;
}

@media (min-width: 768px) {
  .custom-popup-card .custom-popup-header {
    background: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 100%) !important;
    padding: 8px 12px !important;
  }
}

@media (min-width: 1024px) {
  .custom-popup-card .custom-popup-header {
    padding: 10px 14px !important;
  }
}

.custom-popup-card .custom-popup-header h4 {
  font-size: 0.85rem !important; /* Smaller on mobile */
  color: white !important;
  font-weight: 600 !important;
}

@media (min-width: 768px) {
  .custom-popup-card .custom-popup-header h4 {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
  }
}

@media (min-width: 1024px) {
  .custom-popup-card .custom-popup-header h4 {
    font-size: 1.05rem !important;
  }
}

.custom-popup-card .custom-popup-header .badge {
  background-color: rgba(255, 255, 255, 0.15) !important;
  color: white !important;
  padding: 2px 6px !important;
  font-size: 0.55rem !important;
  backdrop-filter: blur(5px);
}

@media (min-width: 768px) {
  .custom-popup-card .custom-popup-header .badge {
    padding: 3px 8px !important;
    font-size: 0.65rem !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
  }
}

/* Accordion Container */
.accordion-container-prominent {
  width: 100%;
}

/* Minimal Accordion Items on mobile */
.accordion-item-prominent {
  border-bottom: 1px solid #f0f0f0; /* Lighter border */
  transition: all 0.2s ease;
}

.accordion-item-prominent:last-child {
  border-bottom: none;
}

.accordion-item-prominent.electricity-section {
  border-left: 2px solid #f59e0b;
}

.accordion-item-prominent.location-section {
  border-left: 2px solid #3b82f6;
}

.accordion-item-prominent.tax-section {
  border-left: 2px solid #10b981;
}

@media (min-width: 1024px) {
  .accordion-item-prominent {
    border-bottom: 1px solid #e5e7eb;
  }

  .accordion-item-prominent.electricity-section,
  .accordion-item-prominent.location-section,
  .accordion-item-prominent.tax-section {
    border-left-width: 3px;
  }
}

/* Very compact header on mobile */
.accordion-header-prominent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 8px; /* Very tight */
  cursor: pointer;
  background: #ffffff;
  transition: all 0.2s ease;
  position: relative;
}

@media (min-width: 768px) {
  .accordion-header-prominent {
    padding: 7px 10px;
  }
}

@media (min-width: 1024px) {
  .accordion-header-prominent {
    padding: 9px 12px;
  }
}

.accordion-header-prominent:hover {
  background: #fafafa; /* Subtle hover */
}

@media (min-width: 768px) {
  .accordion-header-prominent:hover {
    background: #f9fafb;
  }
}

.accordion-header-prominent::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: transparent;
  transition: background 0.2s;
}

.accordion-item-prominent.expanded .accordion-header-prominent::before {
  background: #6d28d9;
}

/* Minimal title on mobile */
.accordion-title-prominent {
  display: flex;
  align-items: center;
  gap: 5px; /* Tight gap */
}

@media (min-width: 768px) {
  .accordion-title-prominent {
    gap: 7px;
  }
}

@media (min-width: 1024px) {
  .accordion-title-prominent {
    gap: 9px;
  }
}

.accordion-icon-prominent {
  font-size: 1rem; /* Small icon on mobile */
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
}

@media (min-width: 768px) {
  .accordion-icon-prominent {
    font-size: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .accordion-icon-prominent {
    font-size: 1.4rem;
  }
}

.title-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.main-title {
  font-size: 0.65rem; /* Smaller on mobile */
  font-weight: 600; /* Less bold */
  color: #374151; /* Softer color */
  letter-spacing: -0.01em;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .main-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #111827;
  }
}

@media (min-width: 1024px) {
  .main-title {
    font-size: 0.85rem;
  }
}

.sub-title {
  font-size: 0.55rem; /* Very small */
  color: #9ca3af; /* Lighter color */
  font-weight: 400;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .sub-title {
    font-size: 0.65rem;
    color: #6b7280;
    font-weight: 500;
  }
}

@media (min-width: 1024px) {
  .sub-title {
    font-size: 0.7rem;
  }
}

.coming-soon-text {
  color: #f59e0b;
  font-weight: 600;
}

/* Minimal arrow on mobile */
.accordion-arrow-prominent {
  font-size: 8px;
  color: #9ca3af; /* Lighter */
  font-weight: normal;
  transition: transform 0.2s ease;
  padding: 2px 4px;
  background: #f9fafb;
  border-radius: 3px;
}

@media (min-width: 768px) {
  .accordion-arrow-prominent {
    font-size: 9px;
    color: #6d28d9;
    font-weight: bold;
    padding: 3px 5px;
  }
}

@media (min-width: 1024px) {
  .accordion-arrow-prominent {
    font-size: 10px;
    padding: 3px 6px;
  }
}

.accordion-item-prominent.expanded .accordion-arrow-prominent {
  transform: rotate(180deg);
  background: #e0e7ff; /* Lighter on mobile */
  color: #6d28d9;
}

@media (min-width: 768px) {
  .accordion-item-prominent.expanded .accordion-arrow-prominent {
    background: #6d28d9;
    color: white;
  }
}

/* Compact body on mobile */
.accordion-body-prominent {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  background: #fafafa; /* Lighter */
}

@media (min-width: 768px) {
  .accordion-body-prominent {
    background: #f9fafb;
  }
}

.accordion-item-prominent.expanded .accordion-body-prominent {
  max-height: 300px; /* Limited on mobile */
  padding: 6px 8px;
}

@media (min-width: 768px) {
  .accordion-item-prominent.expanded .accordion-body-prominent {
    max-height: 400px;
    padding: 9px 10px;
  }
}

@media (min-width: 1024px) {
  .accordion-item-prominent.expanded .accordion-body-prominent {
    max-height: 480px;
    padding: 11px 12px;
  }
}

/* Minimal provider list */
.providers-list-prominent {
  display: flex;
  flex-direction: column;
  gap: 4px; /* Tight */
}

@media (min-width: 768px) {
  .providers-list-prominent {
    gap: 6px;
  }
}

@media (min-width: 1024px) {
  .providers-list-prominent {
    gap: 7px;
  }
}

.provider-section-prominent {
  background: white;
  border: 1px solid #f0f0f0; /* Lighter border */
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.2s ease;
}

@media (min-width: 768px) {
  .provider-section-prominent {
    border-color: #e5e7eb;
    border-radius: 6px;
  }
}

.provider-section-prominent:hover {
  border-color: #c4b5fd; /* Lighter hover */
  box-shadow: 0 1px 4px rgba(109, 40, 217, 0.05);
}

@media (min-width: 768px) {
  .provider-section-prominent:hover {
    border-color: #6d28d9;
    box-shadow: 0 2px 8px rgba(109, 40, 217, 0.08);
  }
}

.provider-header-prominent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 6px; /* Very tight */
  background: #fffbeb; /* Lighter gradient */
  cursor: pointer;
  transition: all 0.2s;
}

@media (min-width: 768px) {
  .provider-header-prominent {
    padding: 6px 8px;
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
  }
}

@media (min-width: 1024px) {
  .provider-header-prominent {
    padding: 7px 10px;
  }
}

.provider-header-prominent:hover {
  background: #fef9c3;
}

@media (min-width: 768px) {
  .provider-header-prominent:hover {
    background: linear-gradient(135deg, #fef9c3 0%, #fef3c7 100%);
  }
}

.provider-info {
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (min-width: 768px) {
  .provider-info {
    gap: 6px;
  }
}

@media (min-width: 1024px) {
  .provider-info {
    gap: 7px;
  }
}

.provider-dot {
  width: 3px;
  height: 3px;
  background: #fbbf24; /* Lighter */
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.15);
}

@media (min-width: 768px) {
  .provider-dot {
    width: 4px;
    height: 4px;
    background: #f59e0b;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
  }
}

@media (min-width: 1024px) {
  .provider-dot {
    width: 5px;
    height: 5px;
  }
}

.provider-name-prominent {
  font-size: 0.65rem;
  font-weight: 600; /* Less bold */
  color: #b45309; /* Softer */
  line-height: 1.2;
}

@media (min-width: 768px) {
  .provider-name-prominent {
    font-size: 0.7rem;
    font-weight: 700;
    color: #92400e;
  }
}

@media (min-width: 1024px) {
  .provider-name-prominent {
    font-size: 0.8rem;
  }
}

.toggle-icon-prominent {
  font-size: 7px;
  color: #fbbf24; /* Lighter */
  font-weight: normal;
  transition: transform 0.2s;
}

@media (min-width: 768px) {
  .toggle-icon-prominent {
    font-size: 8px;
    color: #f59e0b;
    font-weight: bold;
  }
}

@media (min-width: 1024px) {
  .toggle-icon-prominent {
    font-size: 9px;
  }
}

.provider-section-prominent.expanded .toggle-icon-prominent {
  transform: rotate(180deg);
}

.provider-content-prominent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

.provider-section-prominent.expanded .provider-content-prominent {
  max-height: 250px;
}

@media (min-width: 768px) {
  .provider-section-prominent.expanded .provider-content-prominent {
    max-height: 320px;
  }
}

@media (min-width: 1024px) {
  .provider-section-prominent.expanded .provider-content-prominent {
    max-height: 380px;
  }
}

/* Minimal tariff rows */
.tariff-row-prominent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 6px;
  border-bottom: 1px solid #fafafa;
  transition: background 0.2s;
}

@media (min-width: 768px) {
  .tariff-row-prominent {
    padding: 5px 8px;
    border-bottom: 1px solid #f3f4f6;
  }
}

@media (min-width: 1024px) {
  .tariff-row-prominent {
    padding: 7px 10px;
  }
}

.tariff-row-prominent:hover {
  background: #fffbeb;
}

@media (min-width: 768px) {
  .tariff-row-prominent:hover {
    background: #fefce8;
  }
}

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

.tariff-cat-prominent {
  font-size: 0.6rem;
  color: #6b7280; /* Softer */
  font-weight: 500;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .tariff-cat-prominent {
    font-size: 0.65rem;
    color: #374151;
    font-weight: 600;
  }
}

@media (min-width: 1024px) {
  .tariff-cat-prominent {
    font-size: 0.75rem;
  }
}

.tariff-rate-prominent {
  font-size: 0.65rem;
  color: #8b5cf6; /* Lighter purple */
  font-weight: 600;
  background: #f5f3ff; /* Lighter background */
  padding: 2px 5px;
  border-radius: 3px;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .tariff-rate-prominent {
    font-size: 0.7rem;
    color: #6d28d9;
    font-weight: 700;
    background: linear-gradient(135deg, #ede9fe 0%, #f3f4f6 100%);
    padding: 3px 6px;
    border-radius: 4px;
  }
}

@media (min-width: 1024px) {
  .tariff-rate-prominent {
    font-size: 0.8rem;
    padding: 4px 7px;
  }
}

/* Minimal location grid */
.location-grid-prominent {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

@media (min-width: 768px) {
  .location-grid-prominent {
    gap: 6px;
  }
}

@media (min-width: 1024px) {
  .location-grid-prominent {
    gap: 7px;
  }
}

.location-card {
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  padding: 5px 6px;
  border-radius: 5px;
  border: 1px solid #f0f0f0;
  transition: all 0.2s ease;
}

@media (min-width: 768px) {
  .location-card {
    padding: 7px 8px;
    gap: 8px;
    border-color: #e5e7eb;
    border-radius: 6px;
  }
}

@media (min-width: 1024px) {
  .location-card {
    padding: 9px 10px;
    gap: 10px;
  }
}

.location-card:hover {
  border-color: #93c5fd; /* Lighter */
  box-shadow: 0 1px 4px rgba(59, 130, 246, 0.05);
}

@media (min-width: 768px) {
  .location-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
  }
}

.location-icon {
  font-size: 1rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.06));
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .location-icon {
    font-size: 1.3rem;
  }
}

@media (min-width: 1024px) {
  .location-icon {
    font-size: 1.5rem;
  }
}

.location-details {
  flex: 1;
  min-width: 0;
}

.location-label {
  font-size: 0.5rem;
  color: #9ca3af; /* Lighter */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .location-label {
    font-size: 0.55rem;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 2px;
  }
}

@media (min-width: 1024px) {
  .location-label {
    font-size: 0.6rem;
  }
}

.location-value {
  font-size: 0.7rem;
  font-weight: 600; /* Less bold */
  color: #374151; /* Softer */
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .location-value {
    font-size: 0.75rem;
    font-weight: 700;
    color: #111827;
  }
}

@media (min-width: 1024px) {
  .location-value {
    font-size: 0.85rem;
    white-space: normal;
  }
}

/* Minimal placeholder */
.placeholder-prominent {
  text-align: center;
  padding: 12px 10px;
  background: white;
  border-radius: 6px;
  border: 1px dashed #e5e7eb; /* Lighter */
}

@media (min-width: 768px) {
  .placeholder-prominent {
    padding: 15px 12px;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
  }
}

@media (min-width: 1024px) {
  .placeholder-prominent {
    padding: 18px 14px;
  }
}

.placeholder-icon-prominent {
  font-size: 1.5rem;
  margin-bottom: 6px;
  opacity: 0.3; /* Very light */
  filter: grayscale(100%);
}

@media (min-width: 768px) {
  .placeholder-icon-prominent {
    font-size: 2rem;
    margin-bottom: 8px;
    opacity: 0.4;
  }
}

@media (min-width: 1024px) {
  .placeholder-icon-prominent {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
}

.placeholder-title {
  font-size: 0.7rem;
  font-weight: 600; /* Less bold */
  color: #6b7280; /* Softer */
  margin-bottom: 3px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .placeholder-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 4px;
  }
}

@media (min-width: 1024px) {
  .placeholder-title {
    font-size: 0.9rem;
    margin-bottom: 5px;
  }
}

.placeholder-desc {
  font-size: 0.6rem;
  color: #9ca3af; /* Lighter */
  line-height: 1.3;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .placeholder-desc {
    font-size: 0.65rem;
    color: #6b7280;
    margin-bottom: 10px;
  }
}

@media (min-width: 1024px) {
  .placeholder-desc {
    font-size: 0.72rem;
    line-height: 1.4;
    margin-bottom: 12px;
  }
}

.preview-section {
  background: #fafafa;
  padding: 6px;
  border-radius: 4px;
  margin-top: 6px;
  text-align: left;
}

@media (min-width: 768px) {
  .preview-section {
    background: #f9fafb;
    padding: 8px;
    margin-top: 8px;
  }
}

@media (min-width: 1024px) {
  .preview-section {
    padding: 10px;
    margin-top: 10px;
  }
}

.preview-label {
  font-size: 0.55rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .preview-label {
    font-size: 0.6rem;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 5px;
  }
}

@media (min-width: 1024px) {
  .preview-label {
    font-size: 0.65rem;
    margin-bottom: 6px;
  }
}

.preview-items {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

@media (min-width: 768px) {
  .preview-items {
    gap: 3px;
  }
}

@media (min-width: 1024px) {
  .preview-items {
    gap: 4px;
  }
}

.preview-item {
  font-size: 0.6rem;
  color: #6b7280; /* Softer */
  padding-left: 3px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .preview-item {
    font-size: 0.65rem;
    color: #374151;
    padding-left: 4px;
  }
}

@media (min-width: 1024px) {
  .preview-item {
    font-size: 0.7rem;
    padding-left: 5px;
  }
}

/* Minimal scrollbar on mobile */
.custom-popup-card::-webkit-scrollbar {
  width: 3px;
}

@media (min-width: 768px) {
  .custom-popup-card::-webkit-scrollbar {
    width: 4px;
  }
}

@media (min-width: 1024px) {
  .custom-popup-card::-webkit-scrollbar {
    width: 5px;
  }
}

.custom-popup-card::-webkit-scrollbar-track {
  background: #fafafa;
}

@media (min-width: 768px) {
  .custom-popup-card::-webkit-scrollbar-track {
    background: #f3f4f6;
  }
}

.custom-popup-card::-webkit-scrollbar-thumb {
  background: #c4b5fd; /* Lighter */
  border-radius: 10px;
}

@media (min-width: 768px) {
  .custom-popup-card::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #6d28d9 0%, #8b5cf6 100%);
  }
}

.custom-popup-card::-webkit-scrollbar-thumb:hover {
  background: #a78bfa;
}

@media (min-width: 768px) {
  .custom-popup-card::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #5b21b6 0%, #7c3aed 100%);
  }
}

/* Touch devices - Better tap targets */
@media (hover: none) and (pointer: coarse) {
  .accordion-header-prominent {
    padding: 8px 10px;
  }

  .provider-header-prominent {
    padding: 6px 8px;
  }

  .accordion-arrow-prominent {
    padding: 4px 6px;
  }

  .location-card {
    padding: 8px;
  }
}

/* Animations - Subtle on mobile */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.accordion-item-prominent.expanded .accordion-body-prominent {
  animation: slideIn 0.2s ease-out;
}

/* Landscape mobile optimization */
@media (max-height: 500px) and (orientation: landscape) {
  .custom-popup-card {
    max-height: 75vh !important;
    width: 220px !important;
  }

  .accordion-item-prominent.expanded .accordion-body-prominent {
    max-height: 180px;
  }
}

/* Portrait mobile optimization */
@media (max-width: 480px) and (orientation: portrait) {
  .custom-popup-card {
    max-height: 60vh !important; /* Don't take up too much screen */
  }
}

/* Row */
.info-row-down {
  margin-bottom: 12px;
}

/* Heading text (Electricity Pricing, Property Taxes, etc.) */
.info-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px; /* space between heading and boxes */
}

/* Wrapper for the boxes */
.info-boxes {
  display: flex;
  justify-content: flex-start;
  gap: 5px;
  margin-bottom: 5px;
  flex-wrap: nowrap;
}

/* Each small box */
.info-box {
  flex: auto;
  background: #f6f6f9;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 4px 5px;
  text-align: center; /* center the text inside */
  margin-bottom: 5px;
}

/* Value (TATA Power, ₹40, KWH) */
.info-box-value {
  font-size: 10px;
  font-weight: 700;
  color: #222;
}

/* Label (Rate, Type, etc.) */
.info-box-label {
  font-size: 8px;
  margin-top: 3px;
  color: #666;
  font-weight: 500;
}
