body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(#111, #222);
  color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

h1 {
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.editor-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 250px;
  margin-bottom: 30px;
}

.editor-buttons button,
#editor-back {
  padding: 20px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: linear-gradient(135deg, #0f9b0f, #00c853);
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.editor-buttons button:hover,
#editor-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 200, 83, 0.4);
}

.editor-buttons button:active,
#editor-back:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 200, 83, 0.3);
}
