
body {
  font-family: sans-serif;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* Ensure body takes full viewport height */
  margin: 0;
  /* Remove default body margin */
}

footer {
  background-color: #ededed;
  padding: 10px 20px;
  text-align: center;
  margin-top: auto;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
}

/* f8f9fa */

.heading {
  /* background-color: #dbdbdb; */
  margin: auto;
  width: 100%;
  text-align: center;
  margin-top: 0;
  padding: 10px 0px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-right {
  display: flex;
  flex-direction: row;
}

.heading h1 {
  margin: 0;
  text-align: center;
  flex-grow: 1;
}

.logo {
  margin: 0 0 0 15px;
}

.search-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -320px;
  /* Adjust spacing as needed */
}


.text-center {
  margin-top: 15px;
  /* Space between search box and paragraph */
}

.search-box {
  width: 500px;
  height: 235px;
  background-color: #ffffff;
  /* position: absolute; */
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  text-align: center;
}

.fst-italic {
  font-style: italic;
  font-size: 12px;
}

#search {
  height: 40px;
  border-radius: 5px;
  width: calc(100% - 25px);
  /* Corrected width for cross-browser compatibility */
  font-size: 13px;
  background: #f7f7f7;
  border: 1px solid #c7c7c7;
  padding: 5px 15px;
  color: hsl(0, 0%, 20%);
  box-sizing: border-box;
  /* Crucial for including padding in width calculation */
}

.radio-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 10px;
}

.radio-filter input[type="radio"] {
  width: 12px;
}

.radio-filter label {
  margin: 0 10px 0 0px;
  font-size: 14px;
}

.btn-sub {
  width: 30%;
  font-size: 17px;
  height: 32px;
  border: 1.5px solid grey;
  background-color: #388074;
  font-weight: 600;
  border-radius: 5px;
  opacity: 1;
  color: #f5f5f5;
}

.btn-sub:hover {
  opacity: 0.6;
  font-weight: bolder;
}

.submit-group {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.repeat {
  padding-top: 7px;
  background-color: #ffffff;
  border: 1px solid #989898;
  border-radius: 5px;
  width: 2.25rem;
  height: 2.25 rem;
  padding-bottom: 7px;
}

.repeat:focus {
  border: 2px solid rgb(60, 61, 61) !important;

}

.catpcha-img {
  margin-bottom: 1em;
}

.header-links {
  display: flex;
  list-style-type: none;
  padding: 0 15px 0 0;
}

.links {
  color: #000;
  text-decoration: none;
}

.links:hover {
  text-decoration: underline;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.captcha-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 14px;
  width: 100%;

}

.captcha-text {
  font-family: monospace;
  font-size: 20px;
  letter-spacing: 5px;
  background: #f0f0f0;
  padding: 4px 12px;
  border: 1px solid #999;
  border-radius: 5px;
  user-select: none;
  color: blue;
  margin-right: 10px;
}

#captcha-input {
  width: 125px;
  padding: 7.5px 9px;
  border-radius: 5px;
  border: 1px solid #989898;
  font-size: 14px;
}

input[type=text]:focus {
  border: 2px solid rgb(0, 162, 255) !important;
}

#captcha-input:focus {
  border: 2px solid rgb(0, 162, 255) !important;
}