.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: 42px;
  border-radius: 0;
  background-color: #F6F6F4;
  border: 1px solid #CFCFC8;
  overflow: hidden;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

.toggle-button {
  cursor: pointer;
  outline: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  margin: 0 auto 0.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  height: 42px;
  border-radius: 0;
  background-color: transparent;
  border: 1px solid #CFCFC8;
  color: #111;
  user-select: none;
  min-width: 100px;
  width: fit-content;
  padding: 0 18px;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

.toggle-button:hover {
  border-color: #096DF2;
  color: #096DF2;
}

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

.toggle-text {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
}

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

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

s {
  color: #C8C8C3;
}

.tab {
  display: none;
}

input[type="radio"] {
  display: none;
}

#monthlyButton:checked + .toggle-button,
#yearlyButton:checked + .toggle-button {
  background-color: #096DF2 !important;
  color: #fff !important;
  border-color: #096DF2;
  cursor: default;
}

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