.switch-wrapper {
    background: #f4f4f4;
    border-radius: 999px;
    display: inline-flex;
    padding: 4px;
  }

  .switch-button {
    padding: 8px 24px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    color: #bbb;
    font-family: 'Space Grotesk', sans-serif;
  }

  .switch-button.active {
    background: #f89c1c;
    color: white;
  }

  .visible{
    display: block;
  }

  .visible-flex{
    display: flex;
  }

  .invisible{
    display: none;
  }