/* Background animation */
body {
  background: linear-gradient(120deg, #152232, #5ebc67);
  background-size: 200% 200%;
  animation: gradientMove 30s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

/* Form styles */
#plant-form button:disabled {
  cursor: not-allowed;
}

/* Loading and result containers */
#loading,
#result {
  min-height: 50px;
}

/* Image styling in results */
#result img {
  max-width: 100px;
  margin: 5px;
  display: inline-block;
}

/* Card styles */
.card-section {
  margin-top: 50px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.card {
  background-color: rgba(26, 58, 63, 0.8);
  border-radius: 12px;
  padding: 20px;
  width: 250px;
  color: white;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #5ebc67;
}

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-description {
  font-size: 0.9rem;
}
