body {
  font-family: sans-serif;
  padding: 20px;
}

/* Make content area fill the entire browser window */
html,
.fullscreen {
  display: flex;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Center the content in the browser window */
.container {
  margin:0px;
  text-align: center;
  width:100%;
  
  
}

.title {
  font-size: 3rem;
}

#location_select{
    width:250px;	
}

input[type=text], select , input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

textarea{
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family:Arial;
}
button {
  width: 100%;
  background-color: #EE4D2D;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


#result {
  border: none;
  position:absolute;
  z-index:5;
  margin-left:50px;
  padding: 3px;
  background-color:#fff;
  width:300px;
}
#result ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#result ul li {
  padding: 5px 0;
   border-bottom: 1px dotted #ccc;
   text-align:left;
}
#result ul li:hover {
  background: #eee;
}
.search_bar {
  max-width:500px;
  padding:10px;
  
}

a:link{
  color:#EE4D2D;
	
}
a:visited{
  color:#EE4D2D;
	
}

a:active{
  color:#EE4D2D;
	
}

.mylink{
    color:#EE4D2D;
	cursor:pointer;
	
   
}


.radio-container {
  max-width: 600px;
}

.question-text {
  font-weight: bold;
  color: #555;
  margin-bottom: 15px;
}

/* Base style for the container */
.option {
  display: flex;
  align-items: center;
  background-color: #f4f4f4;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Hide the actual radio button */
.option input {
  display: none;
}

/* The circle icon */
.radioicon {
  height: 20px;
  width: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}

/* Logic: When the radio inside IS CHECKED */
.option:has(input:checked) {
  background-color: #5cb85c;
  color: white;
}

.option:has(input:checked) .icon {
  border-color: white;
}

/* Add the checkmark inside the icon when checked */
.option:has(input:checked) .radioicon::after {
  content: "✔";
  color: #5cb85c;
  font-size: 14px;
  font-weight: bold;
}
