/* 
 * Always set the map height explicitly to define the size of the div element
 * that contains the map. 
 */

/* 
     * Optional: Makes the sample page fill the window. 
     */

/* body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
} */
/* #address-container {
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  text-overflow: clip;
} */
/* #address-container h3 {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 16%;
  font-size: 16px;

  align-self: flex-start;
  text-align: center;
} */
/* #select-address-btn {
  background-color: #3ce81a;
  color: white;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
  margin: 10px;
  padding: 0 0.5em;
  font: 400 18px Roboto, Arial, sans-serif;
  overflow: hidden;
  height: 40px;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 0;
} */

#address-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
}
#address-container > h3 {
  height: 100vh;
  padding: 0;
  font-size: 7%;
  align-self: flex-start;
  text-align: center;
}
#select-address-btn {
  background-color: #1a9202;
  color: white;
  border: 0;
  border-radius: 2px;

  padding: 0.5rem 1rem;
  cursor: pointer;
  font: 400 18px Roboto, Arial, sans-serif;
}
.search-value {
  background-color: #fff;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
  margin: 10px;
  padding: 0 0.5em;
  font: 400 18px Roboto, Arial, sans-serif;
  overflow: hidden;
  line-height: 40px;
  margin-right: 0;
  min-width: 25%;
}

input[type="button"] {
  background-color: #fff;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
  margin: 10px;
  padding: 0 0.5em;
  font: 400 18px Roboto, Arial, sans-serif;
  overflow: hidden;
  height: 40px;
  cursor: pointer;
  margin-left: 5px;
}
input[type="button"]:hover {
  background: rgb(235, 235, 235);
}
input[type="button"].button-primary {
  background-color: #1a73e8;
  color: white;
}
input[type="button"].button-primary:hover {
  background-color: #1765cc;
}
input[type="button"].button-secondary {
  background-color: white;
  color: #1a73e8;
}
input[type="button"].button-secondary:hover {
  background-color: #d2e3fc;
}

/* #response-container {
    background-color: #fff;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
    margin: 10px;
    padding: 0 0.5em;
    font: 400 18px Roboto, Arial, sans-serif;
    overflow: hidden;
    overflow: auto;
    max-height: 50%;
    max-width: 90%;
    background-color: rgba(255, 255, 255, 0.95);
    font-size: small;
  } */

#instructions {
  background-color: #fff;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
  margin: 10px;
  padding: 0 0.5em;
  font: 400 18px Roboto, Arial, sans-serif;
  overflow: hidden;
  padding: 1rem;
  font-size: medium;
}
#map {
  height: 70vh;
  width: 100%;
  overflow: hidden;
}
