.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 {
  cursor: pointer;
  outline: none;
  transition: transform 0.2s;
  margin: 0 auto 0.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.1rem;
  height: 40px;
  border-radius: 20px;
  background-color: white;
  border: 2px solid white;
  user-select: none;
  min-width: 100px;
  width: fit-content;
  padding: 5px;
}

.toggle-button:focus {
  outline: none;
}

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

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
}

label[for="yearlyButton"] {
  margin-bottom: 1rem;
}

s {
  color: #C0C0C0;
}

.tab {
  display: none;
  /* Hide all tabs by default */
}

/* Hide radio buttons */
input[type="radio"] {
  display: none;
}

/* Add selected class to the label of the checked radio button */
#monthlyButton:checked + .toggle-button,
#yearlyButton:checked+.toggle-button{
  background-color: var(--primary-color) !important;
  color: white;
  cursor: default;
}

.toggle-buttons-container {
  display: flex;
  gap: .5rem;
}