.small-image {
  width: 20%; 
  margin-top: 26px;
  margin-bottom: 26px;
}

.large-image {
  width: 75%; 
  margin-top: 33px;
  margin-bottom: 33px;
}

.options {
  display: inline-block;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.wrapper:not(:first-child) {
  margin-top: 25px;
}

.search-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.h3-wrapper {
  text-align: left;
}

.options-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.options-content {
  display: inline-block;
  text-align: left;
  padding-left: 17%;
  width: 83%;
}

.go-button-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.go-button-wrapper p {
  color: grey;
  font-style: italic;
}

.section {
  background-color: #f9f9f9;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 80%;
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  transition: box-shadow 0.3s, border-radius 0.3s; /* Add smooth transitions */
}

.section:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Increase the box-shadow on hover */
  border-radius: 10px; /* Increase the border-radius on hover */
}

h3 {
  color: #333;
  font-size: 16px;
  margin: 0 0 0px;
}

.options {
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.option {
  background-color: #ddd;
  border: none;
  border-radius: 5px;
  color: #333;
  cursor: pointer;
  font-size: 16px;
  margin: 5px;
  padding: 7px;
  transition: background-color 0.2s;
  margin-left: 0;
}

.option:hover, .option.active {
  background-color: #aaa;
  color: #fff;
}


.submit-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

input[type="text"] {
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  padding: 7px 10px;
  margin: 5px;
  width: 200px;
  margin-left: 0;
}

input[type="text"]:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.5); /* Add a subtle green outline */
}

.large-button {
  background-color: var(--button-color, #9E9E9E); /* The second argument is a fallback color */
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: -6px;
  padding: 14px; /* Twice the original padding to make it twice as tall */
  transition: background-color 0.2s;
  text-align: center;
  display: inline-block;
  width: 200px; /* Width of the button, adjust as needed */
}

.large-button:hover, .large-button.active {
  background-color: var(--button-color-hover, #757575);
}


.output {
  display: inline-block;
  margin-left: 14px;
}

#output-text {
  font-size: 16px;
  font-weight: bold;
}

.output-option {
  background-color: #ddd;
  border: none;
  border-radius: 5px;
  color: #333;
  cursor: pointer;
  font-size: 16px;
  margin: 5px;
  padding: 7px;
  transition: background-color 0.2s, color 0.2s;
}

.output-option:hover {
  background-color: #aaa;
  color: #fff;
}

#output-section {
  width: 100%;
  text-align: center; /* This centers inline or inline-block elements */
}

#directions-button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

