.cs-country-box {
  width: 100%;
}

.cs-country-menu {
  position: absolute;
  z-index: 1000;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(23, 42, 116, 0.14);
  max-height: 280px;
  overflow-y: auto;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 6px;
  display: none;
  padding: 6px;
}

.cs-country-menu::-webkit-scrollbar {
  width: 6px;
}

.cs-country-menu::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

.cs-country-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #1f2937;
  transition: background-color 0.15s ease;
}

.cs-country-item .cs-country-flag {
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}

.cs-country-item .cs-country-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cs-country-item:hover,
.cs-country-item.active {
  background-color: #f0fdfb;
  color: #172a74;
}

.cs-country-item.no-results {
  color: #9ca3af;
  cursor: default;
  justify-content: center;
  padding: 14px;
}

.cs-country-item.no-results:hover {
  background-color: transparent;
}
