.container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  background-color: var(--bg-light);
  border-radius: 12px;
}

h1 {
  color: #1B5E20;
}

#plant-image {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  margin-top: 20px;
}

#current-plant-name {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--text-dark);
}

.navigation-buttons {
  margin-top: 20px;
}

.navigation-buttons button {
  padding: 10px 16px;
  margin: 0 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
}

.navigation-buttons button:hover {
  background-color: #388E3C;
}

.back-button {
  background-color: #757575;
  color: white;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  margin-bottom: 20px;
}
