.country-select-button {
  width: 4.5rem;
  height: 40px;
  color: #adb5bd;
  border: 1px solid #1F2225;
  border-right: none;
  border-radius: 10px 0 0 10px;
  background-color: #191B1E;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.phone-field-sign .country-select-button {
  background-color: #1f2225;
  border: 1px solid #424547;
}

.country-select-button:hover {
  background-color: #373737;
}

.phone-input {
  border-radius: 0 10px 10px 0 !important;
}

.phone-input-container {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.input-group {
  display: flex;
  align-items: center;
}

.chevron-icon {
  width: 16px;
  height: 16px;
  opacity: 0.5;
}

.phone-input-wrapper {
  position: relative;
  flex: 1;
}

.country-dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 45px;
  width: 100%;
  background-color: #191B1E;
  border: 1px solid #1F2225;
  border-radius: 6px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 1000;
}

.country-list {
  max-height: 250px;
  overflow-y: auto;
}

.country-list::-webkit-scrollbar {
  width: 10px;
}

.country-list::-webkit-scrollbar-track {
  background: #191B1E;
}

.country-list::-webkit-scrollbar-thumb {
  background: #3c4146;
  border-radius: 4px;
}

.country-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
}

.country-item:hover {
  background-color: #373737;
}

.country-item.selected {
  background-color: #373737;
}

.check-icon {
  margin-right: 8px;
  opacity: 0;
  width: 16px;
  display: inline-block;
  text-align: center;
}

.country-item.selected .check-icon {
  opacity: 1;
}

.no-results {
  padding: 10px;
  text-align: center;
  color: #718096;
  display: none;
}

.popover-search {
  padding: 8px 12px;
  border-bottom: 1px solid #1F2225;
}

.flag-btn, 
.flag-list {
  width: 25px;
  border-radius: 3px;
}

.flag-list {
  margin-right: 10px;
}