body {
  margin: 0;
  font-family: Arial, sans-serif;
}

#store-locator {
  display: flex;
  height: 100vh;
  flex-direction: row;
}

.store-list {
  width: 35%;
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}

.card-box {
  background: #fff;
  border-left: 4px solid #1e8dcd;
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 8px;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.card-box:hover {
  background-color: #e6f0fa;
}

.card-box h3 {
  margin: 0 0 5px;
  font-size: 16px;
}

.card-box p {
  margin: 4px 0;
  font-size: 14px;
}

.card-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.card-buttons button {
  flex: 1;
  padding: 8px;
  border: none;
  background: #1e8dcd;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  font-size: 13px;
}

#map {
  width: 65%;
  height: 100%;
}

.mapboxgl-popup {
  max-width: 260px !important;
}

.mapboxgl-popup-content {
  padding: 0 !important;
  background: transparent;
  box-shadow: none;
}

/*Responsive*/
@media (max-width: 768px) {
  #store-locator {
    flex-direction: column;
  }

  #map {
    width: 100%;
    height: 60vh;
  }

  .store-list {
    width: 100%;
    height: 45vh;
  }
}

/*Hide Branding*/

.mapboxgl-ctrl-logo {
	display: none!important;
}

#mapboxgl-ctrl-logo {
	display: none!important;
}

.mapboxgl-ctrl-bottom-right {
  display: none!important;
}

#mapboxgl-ctrl-bottom-right {
  display: none!important;
}