.receive-dropdown {
  position: relative;
  width: 100%;
}
.receive-dropdown summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border: 1px solid #cfdae6;
  border-radius: 13px;
  background: #fbfdff;
  color: #11233c;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.receive-dropdown summary::-webkit-details-marker { display: none; }
.receive-dropdown summary::after { content: "⌄"; font-size: 18px; }
.receive-dropdown[open] summary::after { transform: rotate(180deg); }
.receive-dropdown > div {
  display: grid;
  gap: 6px;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #cfdae6;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8,43,87,.12);
}
.receive-dropdown > div button {
  min-height: 44px;
  padding: 9px 11px;
  border: 0;
  border-radius: 10px;
  background: #f5f8fc;
  color: #11233c;
  text-align: left;
  font-weight: 750;
}
.receive-dropdown > div button.active {
  background: #eaf4ff;
  color: #0c62ce;
}
