.dropdown {
    color: #555;
    margin: 3px -22px 0 0;
    width: 100%;
    position: relative;
    height: 17px;
    text-align: left;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  padding: 0 10px;
  background-color: #FFD75E;
  color: #1b2933;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  width: 100%;
  overflow: hidden;
}

.dropdown-btn:hover {
  background-color: #FFC75E;
}

.btn-text {
  flex: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 8px;
}

.dropdown-arrow {
  margin-left: auto;
  margin-right: 0;
  font-size: 1em;
  transition: transform 0.3s ease;
}

.dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-content {
 display: none;
 position: absolute;
 background-color: #fff;
 min-width: 100%;
 max-height: 300px;
 overflow-y: auto;
 z-index: 1000;
 border: 1px solid #ebebeb;
 border-top: none;
 -webkit-border-radius: 0 0 3px 3px;
 -moz-border-radius: 0 0 3px 3px;
 border-radius: 0 0 3px 3px;
 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 margin-top: 2px;

 scrollbar-width: thin;
 scrollbar-color: #ccc #f0f0f0;
}

.dropdown-content::-webkit-scrollbar {
 width: 8px;
}

.dropdown-content::-webkit-scrollbar-track {
 background: #f0f0f0;
 border-radius: 4px;
}

.dropdown-content::-webkit-scrollbar-thumb {
 background: #ccc;
 border-radius: 4px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
 background: #aaa;
}

.dropdown-content a {
 display: block;
 padding: 10px 15px;
 text-decoration: none;
 color: #1b2933;
 font-size: 13px;
 font-weight: 500;
}

.dropdown-content a:hover {
 background-color: #FFE59F;
}

.dropdown.open .dropdown-content {
  display: block;
}