/* Buttons */
button {
  padding: 10px 15px;
  background: #dd3333;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #b82a2a;
}

/* Home Button */
.home-button {
  display: inline-block;
  padding: 10px 15px;
  background: #444;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.home-button:hover {
  background: #dd3333;
}

/* Button nebeneinander */
.button-row {
  display: flex;
  gap: 10px;
}

/* Mobile: untereinander */
@media (max-width: 500px) {
  .button-row {
    flex-direction: column;
  }
}

/* INDEX Buttons */
.menu-button {
  display: block;
  padding: 12px;
  margin: 8px 0;
  background: #444;
  color: white;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
}

.menu-button:hover {
  background: #dd3333;
}