
/* === AREA PASARAN === */
.input-group {
  display: flex;
  align-items: center !important;   /* teks sejajar vertikal */
  overflow: visible !important;     /* hilangkan clipping */
}

.form-select,
#select-market {
  height: 44px !important;          /* tinggi proporsional */
  line-height: 44px !important;     /* tengah vertikal */
  font-size: 15px;
  font-weight: 600;
  color: #aefc6e;
  border: 2px solid #00ff66;
  border-radius: 12px 0 0 12px;
  background: #0a0a0a;
  padding: 0 40px 0 14px;
  box-shadow: 0 0 8px rgba(0,255,102,0.25);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%2300ff66' height='14' width='14' viewBox='0 0 20 20'><path d='M5 7l5 5 5-5H5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}

#select-market:focus {
  outline: none;
  box-shadow: 0 0 12px rgba(57,255,20,0.4);
}

/* Biar tombol 'website' sejajar pas */
.input-group button,
.input-group .btn {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dropdown option */
#select-market option {
  background: #111;
  color: #aefc6e;
  padding: 8px 10px;
  font-size: 15px;
  line-height: 1.6;
}