@charset "UTF-8";
/* CSS Document */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222;
  background: #f5f5f5;
}

.map-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.map-header {
  padding: 20px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.map-header img {
  max-height: 40px;
  width: auto;
  display: block;
}

#map {
  width: 100%;
  height: 60vh;
  min-height: 500px;
}

.map-sidebar {
  padding: 20px;
  background: #fff;
  border-top: 1px solid #ddd;
}

#location-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-item {
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fafafa;
}

.location-item strong {
  display: block;
  margin-bottom: 4px;
}

.location-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.location-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #ECE636; /* yellow */
  color: #3B3C3E; /* dark gray */
  border: 2px solid #A4CC46; /* green */
  font-size: 13px;
  font-weight: bold;
  flex-shrink: 0;
}

.location-address {
  margin-bottom: 6px;
  color: #555;
  font-size: 14px;
}

.location-item a {
  color: #3B3C3E;
  text-decoration: none;
}

.location-item a:hover {
  color: #A4CC46;
  text-decoration: underline;
}

.location-item.is-clickable {
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.location-item.is-clickable:hover {
  background: #f7f9ef;
  border-color: #A4CC46;
}

.custom-numbered-marker {
  background: transparent;
  border: none;
}

.marker-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #ECE636; /* yellow */
  color: #3B3C3E; /* dark gray */
  border: 2px solid #A4CC46; /* green */
  border-radius: 999px;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.location-note {
  margin-top: 6px;
  font-size: 12px;
  color: #888;
}

@media (max-width: 900px) {
  .map-header,
  .map-sidebar {
    padding: 16px;
  }

  #map {
    height: 50vh;
    min-height: 400px;
  }
}