



.boxes[data-astro-cid-lmkygsfs] {
    --spacing: 1rem;
    margin-top: var(--spacing);
    gap: var(--spacing);
    display: flex;
    flex-direction: column;

    @media (min-width: 640px) {
        flex-direction: row;
    }
}



  .toggle-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 200px;
    height: 40px;
    border-radius: 20px;
    background-color: white;
    border: 2px solid white;
    overflow: hidden;
  }
  .toggle-button {
    width: 100px;
    height: 100%;
    border: none;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    transition: transform 0.2s;
    border-radius: 2rem;
  }

  .toggle-button:focus {
    outline: none;
  }
  .toggle-container .toggle-button:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.1rem;
  }
  .toggle-container .toggle-button:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.1rem;
  }

  /* Text styles */
    .selected {
        background-color: var(--primary-color);
        color: white;
    }

  .toggle-text {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #555;
  }

  .main-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
  }

  s {
    color: #C0C0C0;
  }