/* Autocomplete Styles */
.autocomplete-items {
      position: absolute;
      border: 1px solid #d4d4d4;
      border-bottom: none;
      border-top: none;
      z-index: 99;
      top: 100%;
      left: 0;
      right: 0;
      background-color: #1a1a1a;
      max-height: 200px;
      overflow-y: auto;
      border-radius: 0 0 10px 10px;
}

.autocomplete-items div {
      padding: 10px;
      cursor: pointer;
      background-color: #1a1a1a;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.autocomplete-items div:hover {
      background-color: #00a8ff;
      color: #fff;
}

.autocomplete-active {
      background-color: #00a8ff !important;
      color: #ffffff;
}