.cselect {
  position: relative;
  user-select: none;
}

.cselect-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-secondary);
  border: 1px solid transparent;
  border-radius: 65px;
  padding: 0.877rem 1.25rem;
  cursor: pointer;
}

.cselect-text {
  color: var(--color-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  flex-grow: 1;
  text-align: left;
}

.cselect-arrow {
  color: var(--border-surface);
  margin-left: 8px;
}

.cselect-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  background: var(--bg-secondary);
  border-radius: 10px;
  list-style: none;
  z-index: 100;
  max-height: 0;
  overflow: hidden;
  border: none;
  transition: max-height 0.2s ease-out;
}

.cselect.open .cselect-menu {
  max-height: 200px;
  overflow: auto;
  border: 1px solid var(--border-primary);
  border-top: none;
}

.cselect-item {
  display: flex;
  align-items: center;
  padding: 12px 10px;
  cursor: pointer;
  transition: 0.3s;
}

.cselect-icon {
  color: var(--color-primary);
  font-size: 20px;
  margin-right: 8px;
}

.cselect-item:hover {
  background-color: var(--bg-primary);
}