.palette-picker {
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  gap: 8px;
  font-size: 14px;
}

.palette-option {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  color: #5b6472;
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s ease, color .15s ease;
  white-space: nowrap;
   
}
.palette-option:focus-visible {
  outline: 3px solid #1a56db;
  outline-offset: 2px;
}
.palette-option{
            border:1px solid #ffffff36;
            width: 18px; height:18px;
            border-radius: 100%;
        }

/* selected/active segment — dark pill jaisa screenshot mein tha */

.palette-option[aria-checked="true"] {
  background: #198a5e;
  color: #000;
   width: 16px;
  height: 16px;
   position: relative;
}
.palette-option[aria-checked="true"]::before {
  content: "";
  position: absolute;
  border: solid 2px #198a5e;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  top: 0;
  right: 0;
  left: -5px;
  bottom: 0;
  margin: auto;
}
.topbar-menu>li>.palette-picker>.palette-option[aria-checked="true"]::before{
  
  border: solid 2px #fff;
  background-color: #198a5e;
}

@media screen and (max-width: 499px) {
  .palette-picker {
    flex-wrap: wrap;
  }
}
[data-theme="theme-default"] {
    background: #198a5e;
    color: #fff;
}
[data-theme="theme-ocean-blue"] {
    background:var(--blueprimary-color);
    color: #fff;
}
[data-theme="theme-teal"] {
    background:#0d657a;
    color: #fff;
}
