/*!
 * Bootstrap  v5.3.3 (https://getbootstrap.com/)
 * Copyright 2011-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.search-bar .form-submit {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1.25rem;
  width: 44px;
  height: calc(2.25rem + 2px);
  text-align: center;
  color: #888;
}
.search-bar .form-text {
  transition: border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  display: block;
  width: 100%;
  padding: 0.375rem 44px 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.13);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.show-dropdown {
  display: block !important;
}

#myInput {
  background: var(--body-bg);
  font-size: 16px;
  width: 100%;
}
#myInput:focus {
  outline: 3px solid #ddd;
}

.dropdown {
  position: relative;
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--body-bg);
  min-width: 230px;
  border: 1px solid var(--bs-border-color);
  z-index: 100;
}

.dropdown.form-style .dropbtn {
  width: 35px;
  text-align: center;
  background-color: var(--body-bg);
  color: var(--body-color);
  padding: 0.5rem;
  font-size: 16px;
  border: 1px solid var(--bs-border-color);
  cursor: pointer;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
}
.dropdown.form-style .dropdown-content {
  padding: 0 0.5em;
  width: 100%;
}
.dropdown.form-style .dropdown-list {
  overflow: auto;
  max-height: 280px;
}
.dropdown.form-style .dropdown-content a {
  color: var(--body-color);
  padding: 0.5em 0.75em;
  text-decoration: none;
  display: block;
}
.dropdown.form-style .dropdown-content a:hover {
  background: var(--blue-50);
  color: var(--body-bg);
}