/* Styles for the dark mode toggle button */
#mode-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  background-color: none;
  border: 2px solid goldenrod;
  cursor: grab; /* Set cursor to grab to indicate draggable */
  z-index: 1000;
}

/* Change cursor to grabbing when button is clicked and being dragged */
#mode-toggle:active {
  cursor: grabbing;
}

/* Styles for dark mode */
.dark-mode {
  background-color: #000000;
  color: rgb(91, 3, 255);
}

/* Styles for the Font Awesome icons */
#mode-icon {
  color: rgb(0, 0, 0);;
  margin-right: 10px; /* Add some spacing between icon and text */
}

#mode-icon:hover {
  color: goldenrod;
  margin-right: 10px; /* Add some spacing between icon and text */
}