
/* Style for the map container */
.acf-map {
    width: 100%;
    height: 600px !important;
    margin-top: 20px;
}

/* Style for the dropdown menu */
#location-select {
    width: 100% !important;
height: 50px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 2px;
    margin-bottom: 20px;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Additional styling to make the dropdown more visually appealing */
#location-select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 5px rgba(0, 124, 186, 0.5);
}

#location-select option {
    padding: 10px;
}

/* Style for the info window */
.info-window {
    font-size: 14px;
    line-height: 1.4;
    padding: 5px;
}

/* Search Box */
#pac-input {
    width: 100%;
    height: 50px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 2px;
    margin-bottom: 20px;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.flex-container {
    display: flex;
    flex-direction: row;
  }

  .flex-item-left {
    flex: 70% !important;
  }
  
  .flex-item-right {
    flex: 30% !important;
  }

  /* Responsive layout - makes a one column-layout instead of two-column layout */
  @media (max-width: 800px) {
    .flex-container {
      flex-direction: column !important;
    }
  }

  /* Base Styles */
#location-details {
  padding: 15px;
  background: #fff;
  margin-top: 10px;
  border-radius: 5px;
  box-shadow: 0px 6px 11px rgba(0, 0, 0, 0.13);
  display: flex;
  flex-direction: row; /* Default: Side by side layout */
  gap: 20px;
}


#location-image-column img {
  width: 100%; /* Make sure the image is responsive */
  height: auto;
  border-radius: 5px; /* Optional: Rounded corners */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  #location-details {
      flex-direction: column; /* Stack items on top of each other */
  }

  #location-image-column {
      margin-top: 20px; /* Add some space between text and image */
  }

  #location-info-column ul {
      padding-left: 0;
  }
}

@media (max-width: 480px) {
  #location-details {
      padding: 10px;
  }

  #location-title {
      font-size: 1.5em; /* Adjust title size for smaller screens */
  }

  #location-info-column ul {
      font-size: 14px;
      line-height: 25px;
  }
}
