body {
font-family: Arial, Helvetica, sans-serif, Verdana, Dancing Script;
font-size: 22px;
line-height: 22px;
height: 100vh;
background-color: #282c36;
color: #ffffff;
display: flex;
flex-direction: column;
overflow-y: auto;
z-index: 1;
margin: auto;
padding: 0;
}

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: 90%;
overflow-y: auto;
padding: 10px;
border: 3px solid #555;
border-radius: 5px;
background-color: #2a2f3a;
text-align: left;
font-size: 22px;
}

form {
background-color: #333844;
padding: 10px;
border-radius: 5px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

p {
font-size: 22px;
line-height: 1.5;
color: white;
}

button {
display: block;
width: 80%;
margin: 10px auto;
padding: 10px;
background: #007BFF;
color: #fff;
border: none;
cursor: pointer;
transition: background 0.3s;
}

button:hover {
background: #0056b3;
}

button:disabled {
background: #ccc;
cursor: not-allowed;
}
.map-container {
width: 100%;
height: 40vh; /* Taking full viewport height */
}

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

/* Default behavior (portrait) */
body {
overflow: hidden;
}

/* Landscape */
@media (orientation: landscape) {
body {
overflow-y: auto;
}
}

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;
}
#content {
width: 90%;
overflow-y: auto;
justify-content: center;
align-items: center;
}

#state-selection {
    max-width: 100%;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
   // display: none;
}

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

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;
}

footer {
position: sticky;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
}

.info-icon {
position: relative;
cursor: pointer;
display: inline-block;
margin-left: 5px;
}

.tooltip {
display: none;
width: 250px;
background-color: white844;
color: #ffffff;
text-align: center;
padding: 5px;
border-radius: 4px;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
transform: translateX(-50%);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info-icon:hover .tooltip {
display: block;
}

.container {
text-align: center;
align-items: center;
width: 100%;
}

hr {
height: 3px;
border: none;
}

.awesomplete > ul {
  color: black !important;
  overflow-y: auto !important;
  max-height: 200px;
}

.record {
  border-bottom: 4px solid white;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

  /* Style for AI responses */
  .ai-response {
    background-color: #f5f5f5; /* Background color */
    border: 4px solid white; /* Border */
    padding: 10px; /* Padding */
    margin-bottom: 10px; /* Margin between responses */
    border-radius: 5px; /* Rounded corners */
  }
  
.radiocontainer {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radiocontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radiocontainer:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radiocontainer input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radiocontainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radiocontainer .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}
.tab-content {
  max-height: calc(100vh - 150px);
  overflow-y: auto;
}

#toggleButton {
  position: fixed;
  bottom: 20px; /* Adjust this value to set the padding between the button and the footer */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000; /* To ensure it appears above other content */
}