/* ========================
   Main Plugin Container
======================== */
#vsp-payment-map {
  padding: 1rem;
}

#vsp-payment-map svg {
  max-width: 100%;
  height: auto;
}

/* ========================
   Payment Info Display
======================== */
#payment-info {
  margin-top: 1rem;
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
}

#payment-info h3 {
  margin-top: 1rem;
}

/* ========================
   Map & Key Highlights
======================== */
.active-county {
  stroke: #000;
  stroke-width: 2;
  fill: #fac864 !important; /* highlight fill */
}

tspan[data-city] {
  cursor: pointer;
  fill: #0645ad;
  transition: fill 0.2s ease;
}

/* Hover style for legend cities */
tspan[data-city]:hover {
  fill: #f60404;
  stroke: #000;
}

/* Active city/county (from JS) */
.active-label {
  fill: #000 !important;
  stroke: #000 !important;
  font-weight: bold;
}

/* ========================
   Location Block Styling
======================== */
.payment-location-block {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #ccc;
}

.location-label {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.location-address {
  margin: 0;
  margin-bottom: 0.25rem;
}

.payment-types {
  margin: 0;
  color: #333;
}

/* ========================
   Search Dropdown
======================== */
#vsp-search-dropdown {
  position: relative;
  max-width: 400px;
  margin: 1rem 0;
}

/* Input box styling */
#county-search {
  width: 100%;
  padding: 0.5rem;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;

  /* Dropdown arrow */
  background-image: url("data:image/svg+xml,%3Csvg fill='black' height='10' viewBox='0 0 24 24' width='10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.6rem center;
  background-size: 12px 12px;
  padding-right: 2rem; /* space for arrow */
}

#county-search:focus {
  outline: 2px solid #0645ad;

  /* Arrow rotates up */
  background-image: url("data:image/svg+xml,%3Csvg fill='black' height='10' viewBox='0 0 24 24' width='10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 14l5-5 5 5z'/%3E%3C/svg%3E");
}

/* Dropdown list */
#county-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 999;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: none; /* hidden until opened */
}

/* Dropdown item */
.dropdown-item {
  padding: 0.5rem;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

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

.dropdown-item:hover,
.dropdown-item.active {
  background: #f0f0f0;
}

.dropdown-item.highlighted {
  background-color: #dbeafe;
  font-weight: bold;
}

/* ========================
   Label Enhancements
======================== */
#vsp-search-dropdown label::after {
  content: "▼";
  margin-left: 0.5rem;
  font-size: 0.9rem;
  color: #333;
}
