<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">  .search-button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.search-button::before {
  content: "\f002";
  font-family: FontAwesome;
  font-size: 16px;
}

.search-button:active {
    transform: scale(0.65);
}

.search-input {
  border: 2px solid #000; /* Makes the border thicker */
  border-radius: 8px; /* Rounds the corners */
}

.search-input::placeholder {
  text-align: center;
}
.no-match-message {
  text-align: center;
  display: block; /* Initially hidden */
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #508d24; !important;
}
.circled {
  display: inline-block;
  border-radius: 50%;  /* Makes it round */
  width: 40px;  /* Width of the circle */
  height: 40px;  /* Height of the circle */
  text-align: center;  /* Centers the text horizontally */
  line-height: 40px;  /* Centers the text vertically */
  border: 2px solid #000;  /* Border color and width */
}
.highlight {
    background-color: yellow;
    color: black;
}
</pre></body></html>