
.picker-container {
  position: relative;
}

.picker-input {
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
  font-size: 1em;
}

.picker-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 100%;
  background: #333;
  z-index: 10;
  max-height: 150px;
  overflow-y: auto;
}

.picker-list li {
  padding: 4px 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.picker-list li:hover,
.picker-list li.active {
  background: #555;
}

.picker-flag {
  height: 18px;
  width: auto;
  flex-shrink: 0;
}
