/* SETTINGS BUTTON */
.settings {
  position: absolute;
  top: 20px;
  right: 30px;
}

#gear {
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

#gear:hover {
  transform: scale(1.1);
  transition: transform 0.2s;
}

/* DROPDOWN */
.dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 40px;
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  width: 200px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown h3 {
  margin-top: 0;
}

.dropdown label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

.dropdown select,
.dropdown button {
  width: 100%;
  margin-top: 5px;
  padding: 6px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

/* DARK MODE */
.dark-mode body {
  background: #1e1e1e;
  color: white;
}

.dark-mode .sidebar,
.dark-mode .dashboard,
.dark-mode {
  background: #2a2a2a;
  color: white;
}

.dark-mode .nav-btn {
  color: white;
}

.dark-mode a.nav-btn:hover {
  background: #444;
}

.dark-mode .dropdown {
  background: #2a2a2a;
  color: white;
}