.navbar {
  align-items: center;
  overflow: hidden;
  background-color: white;
  display: flex;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  font-family: "Monaco";
  text-shadow: 1px 2px 2px #3f4748;
}

.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 18px 10px;
  text-decoration: #1d689e;
  margin-left: 20px;
}

.navbar a:first-child {
  margin-right: 20px;
}

.navbar a:hover {
  background-color: #ddd;
  color: grey;
}

.dropdown {
  float: left;
  overflow: hidden;
  opacity: 95%;
}

.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: "Monaco";
  text-shadow: 1px 2px 2px #3f4748;
  margin: 0;
}

.navbar a:hover::before,
.dropdown:hover .dropbtn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  z-index: 1;
  border-radius: 20px;
}

.navbar a:hover,
.dropdown:hover .dropbtn {
  background-color: rgba(42, 112, 50, 0.5);
  color: white;
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 1px #757575;
}

.dropdown-content {
  display: none;
  position: fixed;
  background-color: #3a3a3a;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  font-family: "Monaco";
  border-radius: 2px;
}

.dropdown-content a {
  float: none;
  color: white;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-family: "Monaco";
}

.dropdown-content a:hover {
  background-color: #d4d4d4;
  color: black;
  border-radius: 2px;
  padding: 10px 16px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

#assessment-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  border: none;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
}

label,
textarea,
button,
select,
input[type="checkbox"] {
  margin-bottom: 10px;
  font-weight: bold;
}

textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
select {
  width: 50%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

textarea {
  height: 100px;
}

/* #output {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
} */
* {
  font-family: Arial, Helvetica, sans-serif;
}

h1 {
  text-align: center;
  color: #0099cc;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

h2 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

body {
  background-color: white;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: 80px;
}

#form-title {
  text-align: center;
  color: #0099cc;
}

#assessor-link {
  font-size: 13px;
  padding-left: 10px;
}

.inputparam {
  padding-left: 50px;
}

.required {
  color: red;
}



#houseAssessment-background {
  background-image: url("../assets/indexBGnew.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

#houseAssessment-background::before{
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: -1;
}

#form-submit{
    color: white;
    background-color: #0099cc;
    height: 28px;
    border-radius: 5px;
    width: 160px;
}

.search-field{
    color: black;
}






.editable-status {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-text {
    font-weight: bold;
}

.status-dropdown {
    padding: 5px;
    font-size: 14px;
    border: 1px solid #bfbfbf;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
}

.hidden {
    display: none;
}
