/* Default light theme */
body {
  background-color: #ffffff;
  color: #000000;
  font-family: Arial, sans-serif;
}

/* Dark theme */
body.dark-mode {
  background-color: #121212 !important;
  color: #ffffff;
}

/* Links in dark mode */
body.dark-mode a {
  color: #90caf9 !important;
}

/* Modal content in dark mode */
body.dark-mode .table .modal-content {
  background-color: #121212;
  color: white;
}

/* Toggle button base style */
.toggle-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  padding: 6px 10px;
  line-height: 1;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Light mode button - dark background with white text */
body.light-mode .toggle-btn {
  background-color: #222;
  color: white;
}

/* Dark mode button - blue background with white text */
body.dark-mode .toggle-btn {
  background-color: #007bff;
  color: white;
}
