/* KudoSIM Destination Search — full stylesheet (FA search icon only) */

/* Wrapper */
.kds-search {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

/* Input bar */
.kds-input {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #eaedf5;
  border-radius: 24px;
  padding: 10px 14px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

/* Icon container */
.kds-ico {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 12px;
  background: #eaf3ff none !important; /* light blue bg only */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Disable old CSS-drawn icon */
.kds-ico::before,
.kds-ico::after {
  content: none !important;
  display: none !important;
}

/* Font Awesome search icon */
.kds-ico i {
  font-size: 16px;
  line-height: 1;
  color: #2a2a2a;
}

/* Input field */
.kds-field {
  flex: 1;
  border: 0;
  outline: 0;
  font: inherit;
  padding: 8px 0;
  background: transparent;
}

/* Clear button (×) */
.kds-clear {
  border: 0;
  background: transparent;
  color: #8b8fa3;
  font-size: 20px;
  line-height: 1;
  padding: 6px;
  cursor: pointer;
  display: none; /* becomes visible when user types */
}

/* Results container (dropdown) */
.kds-results {
  display: none;
  margin-top: 10px;
  border-radius: 20px;
  background: #f6f8fd;
  border: 1px solid #eaedf5;
  padding: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* Result row */
.kds-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
}
.kds-item:hover {
  background: #eef3ff;
}

/* Circular flag */
.kds-flag {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f6;
  box-shadow: inset 0 0 0 1px #eef0f4;
}
.kds-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Country name */
.kds-name {
  font-weight: 700;
  letter-spacing: .2px;
}
