.style-switcher {
    width: 240px;
    position: fixed;
    left: 0;
    top: 10px;
    z-index: 51;
    padding: 15px;
    border: 1px solid var(--bg-border);
    border-radius: 10px;
    background-color: var(--bg-secondary);
    transition: all 0.3s ease;
    transform: translateX(-100%);
  }
  .style-switcher.open {
    transform: translateX(25px);
  }
  .style-switcher .s-icon {
    position: absolute;
    left: 100%;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 20px;
    border: 1px solid var(--bg-border);
    border-radius: 50%;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    margin-left: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .style-switcher .s-icon i {
    line-height: 40px;
  }
  .style-switcher .style-switcher-toggler {
    top: 0;
  }
  .style-switcher .day-night {
    top: 55px;
  }
  .style-switcher h4 {
    margin: 0 0 10px;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
  }
  .style-switcher .colors {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .style-switcher .colors span {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
  }
  .color-selected {
    border: 2px solid var(--bg-border);
  }
  .style-switcher .color-1 {
    background-color: rgb(244 63 94);
  }
  .style-switcher .color-2 {
    background-color: rgb(249 115 22);
  }
  .style-switcher .color-3 {
    background-color: rgb(132 204 22);
  }
  .style-switcher .color-4 {
    background-color: rgb(16 185 129);
  }
  .style-switcher .color-5 {
    background-color: rgb(6 182 212);
  }
  .style-switcher .color-6 {
    background-color: rgb(139 92 246);
  }