/* Global Styles */
#sfm-container {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #fff;
  color: #333;
  margin: 0;
  padding: 0;
  position: relative;
}

#sfm-map {
  width: 100%;
  height: 90vh;
  background-color: #abd3e0;
}

/* Desktop: show the filters at the top */
@media screen and (min-width: 601px) {
  #sfm-controls {
    display: block;
    position: relative;
    padding: 10px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
  }
  #sfm-controls select,
  #sfm-controls input {
    width: 200px;
    font-size: 16px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
    background-color: #fff;
    color: #333;
  }
  #sfm-nameFilter {
    width: 175px;
    display: inline-block;
  }
  #sfm-hamburger {
    display: none;
  }
}

/* Mobile: hide the filters by default, show a floating hamburger menu */
@media screen and (max-width: 600px) {
  #sfm-controls {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: #fff;
    border-left: 1px solid #ddd;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    padding: 20px;
    z-index: 1000;
    overflow-y: auto;
  }
  #sfm-controls select,
  #sfm-controls input {
    width: 100%;
    font-size: 16px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    background-color: #fff;
    color: #333;
  }
  /* Force the "Filter by Name" input to always fill the mobile menu width */
  #sfm-controls #sfm-nameFilter {
    width: 90%;
  }  
  #sfm-hamburger {
    display: block;
    position: absolute; 
    top: 15px;
    left: 15px;
    font-size: 24px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px 10px;
    z-index: 1001;
    cursor: pointer;
  }
}

.sfm-email-link {
  color: #0077cc;
  text-decoration: underline;
  font-size: 14px;
}
