/* WebBrowse Modal styles */
.webBrowseModal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rba (0.0.0.0);
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.webBrowseModal-content {
  position: relative;
  margin: auto;
  padding: 20px;
  background-color: black;
  width: 100%;
  height: 100%;  /* Set height */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;  /* Center horizontally */
  justify-content: flex-start;  /* Align to the top */
  z-index: 9999;
}


.webBrowseClose {
  position: absolute;
  top: 10px;
  right: 5%;
  cursor: pointer;
  color: white;
  font-size: 20px;
}

/* Style for input */
#webBrowseQuery {
  background-color: #292828;
  color: white;
  padding: 10px;
  margin: 10px;
  border: none;
  width: 80%;
  height: 40px;
  font-size: 16px;

}

/* Style for submit button */
#webBrowseSubmitButton {
  background-color: #292828;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid white;
  border-radius: 5px;
}

/* Style for results */
#webBrowseResults {
  color: lime;
  margin-top: 20px;
  text-align: left;
  white-space: pre-line;  /* Preserve line breaks */
  z-index: 9999;
}
