 @import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
    .registered {
      color: #e94c3d;
    }
    .not-registered {
      color: green;
    }
    .error {
      color: orange;
    }
    .fulld-green {
      color: #198754;
      font-weight: bold;
    }
    .fulld-red {
      color: #b90020;
    }
    .fulld {
      color: #0dcaf0;
      font-weight: bold;
    }
    .fulld-info {
      color: gray;
      font-size: 12px;
    }
    p {
      line-height: 22px;
      font-size: 1.2rem;
    }
    a {
      overflow: hidden;
      position: relative;
      display: inline-block;
    }
    a::before, a::after {
      content: '';
      position: absolute;
      width: 100%;
      left: 0;
    }
    a::before {
      background-color: #6c757d;
      height: 2px;
      bottom: 0;
      transform-origin: 100% 50%;
      transform: scaleX(0);
      transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
    }
    a::after {
      content: attr(data-replace);
      height: 100%;
      top: 0;
      transform-origin: 100% 50%;
      transform: translate3d(200%, 0, 0);
      transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
      color: #6c757d;
    }
    a:hover::before {
      transform-origin: 0% 50%;
      transform: scaleX(1);
    }
    a:hover::after {
      transform: translate3d(0, 0, 0);
    }
    a span {
      display: inline-block;
      transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
    }
    a:hover span {
      transform: translate3d(-200%, 0, 0);
    }
    body {
      display: grid;
      font-family: "Ubuntu", serif;
      font-size: 21px;
      line-height: 1.5;
      place-items: center;
    }
    a {
      text-decoration: none;
      color: #18272F;
      font-weight: 700;
      vertical-align: top;
    }
    .stripes {
      background-repeat: repeat;
      background-size: 100% 50px;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: stripes 2s linear infinite;
      -webkit-animation: stripes 2s linear infinite;
      background-image: -webkit-linear-gradient(#dadada 50%, #969696 50%);
    }
    @keyframes stripes {
      100% {
        background-position: 0 -50px;
      }
    }
    .loader {
      border: 4px solid #f3f3f3;
      border-top: 4px solid #3498db;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      animation: spin 2s linear infinite;
      display: none;
      margin: auto;
    }
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    .result-divider {
      border-top: 1px solid #ddd;
      margin-top: 20px;
      margin-bottom: 20px;
    }
    .awesomplete [hidden] {
    display: none;
}

.awesomplete {
  position: relative !important;
  display: block !important;
}

.awesomplete ul {
    position: absolute;
    left: 0;
    z-index: 1;
    min-width: 100%;
    box-sizing: border-box;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #333 !important; /* Background color for dark mode */
    border: 1px solid #444 !important; /* Border color for dark mode */
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}
.awesomplete mark {
  background: black !important;
  color:#fddb33;
}
.awesomplete li {
    padding: 0.5em 1em;
    cursor: pointer;
    background: #333 !important; /* Background color for dark mode */
    color: #fff !important; /* Text color for dark mode */
}

.awesomplete li::before {
    background: #333 !important; /* Background color for dark mode */
}

.awesomplete li.selected, .awesomplete li:hover {
    background: #555 !important; /* Hover and selected background color for dark mode */
    color: #fff !important; /* Text color for dark mode */
}


