/* Module styles */
/* .address-schedule-container {
  margin: 20px 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.address-schedule-title {
  padding: 20px;
  margin: 0;
  background-color: #f8f8f8;
  font-size: 24px;
  color: #222;
  border-bottom: 1px solid #eee;
}

.address-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.address-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.address-item:last-child {
  border-bottom: none;
} */

/* .address-header {
  background-color: #f8f8f8;
  padding: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.address-header:hover {
  background-color: #f0f0f0;
}

.address-header h3 {
  font-size: 18px;
  margin: 0;
  color: #222;
}

.address-content {
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
}

.address-details {
  flex: 1;
  min-width: 300px;
  padding-right: 20px;
}

.address-info {
  margin-bottom: 15px;
}

.address-info p {
  margin-bottom: 5px;
}

/* Flex-based schedule styles */
.schedule-flex {
  width: 100%;
  margin-top: 15px;
}

.schedule-row {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 8px 0;
}

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

.schedule-day {
  flex: 1;
  text-align: left;
  padding-left: 0;
  font-weight: normal;
}

.schedule-hours {
  flex: 1;
  text-align: right;
  padding-right: 0;
}

.map-container {
  flex: 2;
  min-width: 300px;
  height: 400px;
}

.more-info-btn {
  display: inline-block;
  background-color: #e30613;
  color: white;
  padding: 8px 40px;
  margin-top: 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.more-info-btn:hover {
  background-color: #c70512;
}

/* Map balloon styles */
.map-balloon {
  padding: 10px;
  max-width: 250px;
}

.map-balloon h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 16px;
}

.map-balloon p {
  margin: 5px 0;
}

/* Responsive styles */
@media (max-width: 768px) {
  .address-content {
    flex-direction: column;
  }

  .address-details {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .map-container {
    height: 300px;
  }
} */
