/* Global Styles */
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 1.5;
  background-color: #282c36;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

.container, #content {
  width: 100%;
  background-color: #282c36;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Form Styles */
form {
  background-color: #333844;
  width: 100%;
  padding: 5px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/* Text and Heading Styles */
h1, p {
  text-align: center;
  color: white;
}

h1 {
  margin-top: 150px;
  font-family: 'Dancing Script', cursive;
  font-weight: bold;
}

/* Input Fields and Buttons */
.input-group, .input-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

input[type="text"], input[type="submit"], select#state-dropdown {
  padding: 10px;
  border: none;
  border-radius: 4px;
  margin-bottom: 10px;
}

button {
margin-left: 10px;
padding: 10px 15px;
background-color: #007BFF;
border: none;
color: #ffffff;
border-radius: 4px;
cursor: pointer;
margin-top: 15px;
margin-bottom: 15px;
width: 100%;
}

/* Responsive & Interactive Elements */
@media (orientation: landscape) {
  .input-group, .input-container {
    flex-direction: row;
    align-items: center;
  }
}

/* Tooltips and Icons */
.info-icon {
  position: relative;
  cursor: pointer;
}

.tooltip {
  display: none;
  width: 250px;
  background-color: #34373c;
  color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Additional Custom Styles */
.radiocontainer .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/* Misc */
.scrollmenu {
  position: sticky;
  top: 0;
  background-color: black;
  white-space: nowrap;
}

.scrollmenu a {
  display: inline-block;
  color: white;
  padding: 20px;
  text-decoration: none;
}

html {
margin: 0;
padding: 0;
}

h1 {
top: 0;
left: 0;
margin-top: 150px;
font-family: 'Dancing Script', cursive;
color: white;
text-align: center;
font-weight: bold;
margin: 1em 0;
front-size: 64px;
}

.entry {
  min-height: 300px;
  border-bottom: 3px solid #444;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.search {
width: 90%;
margin: auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
align-items: center;
}

.results {
max-height: 300px;
min-height: 300px;
width: 100%;
overflow-y: auto;
padding: 10px;
border: 3px solid #555;
border-radius: 5px;
background-color: #2a2f3a;
text-align: left;
font-size: 22px;
}

input[type="text"], select#state-dropdown {
padding: 10px;
border: none;
border-radius: 4px;
margin-bottom: 10px;
box-sizing: border-box;
width: 100%;
}

input[type="submit"] {
//margin-left: 10px;
padding: 10px 15px;
background-color: #007BFF;
border: none;
color: #ffffff;
border-radius: 4px;
cursor: pointer;
width: 100%;
}

input[type="submit"]:hover {
background-color: #0056b3;
}

div.scrollmenu {
position: sticky;
top: 0;
left: 0;
z-index: 9999;
background-color: black;
overflow: auto;
white-space: nowrap;
}

div.scrollmenu a {
display: inline-block;
color: white;
text-align: center;
padding: 20px;
text-decoration: none;

}

div.scrollmenu a:hover {
background-color: #777;
}

footer {
position: absolute;
bottom: 10px;
bottom: 10px;
margin-top: 20px;
left: 50%;
transform: translateX(-50%);
}


.map-container {
width: 100%;
height: 40vh; /* Taking full viewport height */
}

iframe {
width: 100%;
height: 100%;
}


button:hover {
background: #0056b3;
}

button:disabled {
background: #ccc;
cursor: not-allowed;
}