.theme-toggle,
.calendar-toggle {
  position: fixed;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0056b3;
  color: #fff;
}

.theme-toggle {
  bottom: 20px;
  left: 90px;
}

.calendar-toggle {
  bottom: 20px;
  left: 20px;
}

.theme-toggle:hover,
.calendar-toggle:hover {
  background-color: #3f8cff;
}

.theme-toggle .theme-icon,
.calendar-toggle .cal-icon {
  font-size: 24px;
  line-height: 1;
}

/* Перемикання іконок теми */
.theme-toggle .theme-icon--sun {
  display: none;
}

.theme-toggle.active .theme-icon--sun {
  display: inline;
}

.theme-toggle .theme-icon--snow {
  display: inline;
}

.theme-toggle.active .theme-icon--snow {
  display: none;
}

/* Перемикання іконок календаря */
.calendar-toggle .cal-icon--open {
  display: inline;
}

.calendar-toggle .cal-icon--close {
  display: none;
}

.calendar-toggle.active .cal-icon--open {
  display: none;
}

.calendar-toggle.active .cal-icon--close {
  display: inline;
}
