body {
  background-color: #1c1c1c; /* Dark background */
  color: #eaeaea;
}

.settings-card {
  background-color: #2a2a2a; 
  border: none;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.settings-card .card-header {
  background-color: #333;
  color: #f1f1f1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

.list-group-item {
  border: none;
  transition: all 0.3s ease;
}

.list-group-item:hover {
  background-color: #444;
  transform: scale(1.02);
}

.list-group-item.text-danger:hover {
  background-color: #661111;
  color: #fff;
}
