.page-content {
  padding: 20px;
  color: white;
  font-family: 'Orbitron', sans-serif;
  height: 100%;
  background: linear-gradient(135deg, #2c3e50, #34495e);
}

.page-content h1 {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 10px;
}

.page-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.settings-form {
  max-width: 500px;
}

.setting-group {
  margin-bottom: 20px;
}

.setting-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #ecf0f1;
}

.setting-group select,
.setting-group input[type="checkbox"] {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: 'Orbitron', sans-serif;
}

.save-btn {
  background: #3498db;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
  transition: background 0.3s ease;
}

.save-btn:hover {
  background: #2980b9;
}
