.country-select-container {
  font-family: Arial, sans-serif;
  max-width: 400px;
  margin: 20px auto;
  position: relative;
}

.country-select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
}
.country-select-wrapper input {
  width: 100%;
  padding: 0;
  font-size: 16px;
  border: none;
  box-sizing: border-box;
}

.country-select-flag {
  width: 20px;
  height: 15px;
  margin-right: 8px;
  flex-shrink: 0;
}

.country-select-dropdown {
  position: absolute;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #ddd;
  border-top: none;
  background: white;
  z-index: 1000;
  display: none;
  margin-top: 1px;
}

.country-select-item {
  padding: 8px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.country-select-item .flag {
  flex: none;
  width: 20px;
  height: 15px;
  margin-right: 8px;
  object-fit: contain;
  object-position: center center;
}
.country-select-item:hover, .country-select-item.highlighted {
  background-color: #f5f5f5;
}

.country-select-divider {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  color: #666;
  font-size: 0.9em;
  margin: 10px 0;
}

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