@import url('https://fonts.googleapis.com/css2?family=Lexend&display=swap');

.force-lexend * {
  font-family: "Lexend", sans-serif !important;
}

.toggle-button {
  position: fixed;
  top: 10px;
  right: 10px;
  background-color: #ffb6d9;
  border: 6px solid transparent;
  border-image: url("https://i.imgur.com/XfeCAP2.png") 7 fill round;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 12px;
  color: #f12caa;
  z-index: 9999;
  user-select: none;
  transition: background-color 0.3s ease;
}

.toggle-button:hover {
  background-color: #ff9acc;
}