body {
  background: #0b1e3a;
  color: #e6f0ff;
  margin: 0;
  padding: 0;
}
#toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 6px;
  padding-right: 81px;
  position: relative;
}
select {
  background: #2f3e50;
  color: #fff;
  border: 1px solid #3f5160;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  width: 170px;
  transition: width 0.15s ease-out;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
select:hover {
  background: #3f5060;
}
select:focus {
  outline: 2px solid #5a7a90;
}
select option {
  background: #2f3e50;
  color: #fff;
  padding: 8px;
  white-space: nowrap;
}
select:active,
select:focus {
  outline: 2px solid #5a7a90;
}
#toolbar .flag {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 80px;
  height: auto;
}
#flagContainer {
  position: absolute;
  right: 6px;
  top: 6px;
  text-align: center;
}
#flagContainer img {
  display: block;
  width: 80px;
  height: auto;
}
#flagContainer span {
  display: block;
  font-size: 10px;
  color: #e6f0ff;
  margin-top: 2px;
}
.country-name-static {
  display: block;
  font-size: 10px;
  color: #e6f0ff;
  text-align: center;
  position: absolute;
  right: 6px;
  top: 66px;
  width: 80px;
}
