.custom-select {
  
  position: relative;

  min-width: 100px;
  max-width: 150px;
 
}

.select-button {
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.675em 1em;
  border: 1px solid #caced1;
  border-radius: 0.25rem;
  background-color: #222;
  color: white;
  cursor: pointer;
  
  
}

.arrow {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid white;
  transition: transform ease-in-out 0.3s;
}

.select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 150%;
  border: 1px solid #caced1;
  border-radius: 0.25rem;
  background-color: #222;
  list-style: none;
  padding: 10px;
  margin: 10px 0 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  max-height: 200px;
  overflow-y: auto;
  z-index: 900000;
  
}

.select-dropdown::-webkit-scrollbar {
  width: 7px;
}
.select-dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 25px;
}

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

.select-dropdown li {
  padding: 10px;
  cursor: pointer;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: white;
}

/* Highlight the selected option */
.select-dropdown li.selected {
  background-color: #000;
  border-radius: 4px;
  font-weight: bold;
}

.select-dropdown li:hover,
.select-dropdown li:focus {
  background-color: #000;
  border-radius: 4px;
}

.select-dropdown.hidden {
  display: none;
}

.select-button[aria-expanded="true"] .arrow {
  transform: rotate(180deg);
}

/*=============
Reset 
=========================*/
/*
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #333;
  display: grid;
  place-items: center;
}
*/

