/* Marker Popup Container */
.marker-popup {
  max-width: 300px;
  padding: 16px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-family: Arial, sans-serif;
  color: #333;
  box-sizing: border-box;
}

/* Header */
.marker-popup__header {
  margin-bottom: 12px;
}
.marker-popup__title {
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
}
.marker-popup__club-number {
  font-size: 0.875rem;
  color: #666;
  margin-left: 4px;
}

/* Sections */
.marker-popup__section {
  margin-top: 12px;
}
.marker-popup__section-title {
  font-size: .9rem;
    font-weight: 500;
  margin-bottom: 8px;
}

/* Contact List */
.marker-popup__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.marker-popup__contact-item {
  margin-bottom: 6px;
}
.marker-popup__link a {
  color: #0056b3;
  text-decoration: none;
}
.marker-popup__link:hover {
    color: #0056b3;
  text-decoration: underline;
}
.marker-popup__contact-label {
  font-weight: bold;
  margin-right: 4px;
}
.marker-popup__contact-value {
  font-weight: normal;
}

/* Address Lines */
.marker-popup__address {
  font-style: normal;
}
.marker-popup__address-line {
  margin-bottom: 4px;
}

/* Meeting Schedule */
.marker-popup__meeting-schedule {
  margin: 0 0 8px;
  font-size: 0.9rem;
}
.marker-popup__meeting-day,
.marker-popup__meeting-time {
  font-weight: bold;
}

/* Directions Link */
.marker-popup__directions .marker-popup__link {
  font-weight: bold;
}
