.theme-logo {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/images/logo-light.svg");
}

/* When dark mode checkbox is checked */
#dark-mode:checked ~ .theme .theme-logo {
  background-image: url("/images/logo-dark.svg");
}

.menu-logo {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/images/menu-closed-light.svg");
}

/* When dark mode checkbox is checked */
#dark-mode:checked ~ .theme .menu-logo {
  background-image: url("/images/menu-closed-dark.svg");
}



