    .theme-picker-shell {
      display: flex;
      align-items: center;
      gap: 5px;
      height: 28px;
      padding: 0 7px;
      border: 1px solid var(--border-button);
      border-radius: var(--radius-large);
      color: var(--text-secondary);
      background: var(--btn-bg);
      font-family: var(--font-ui);
      font-size: 11px;
    }

    .theme-picker-shell:focus-within,
    .theme-picker-shell:hover {
      border-color: var(--accent);
      color: var(--text-primary);
    }

    .theme-picker {
      max-width: 148px;
      border: 0;
      outline: 0;
      color: inherit;
      background: transparent;
      font: inherit;
      cursor: pointer;
    }

    .theme-picker option {
      color: var(--text-primary);
      background: var(--bg-raised);
    }

