/* Unique Styles for Wetland List */
.wetland-list {
  padding: 40px 20px;
  background-color: #f4f4f4;
  color: #333;
}

.wetland-title {
  font-size: 2rem;
  text-align: center;
  color: #2c3e50;
  margin-bottom: 30px;
}

.wetland-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 10px 0;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.wetland-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.wetland-name {
  font-size: 1.6rem;
  font-weight: bold;
  color: #27ae60;
  margin-bottom: 10px;
}

.wetland-description {
  font-size: 1rem;
  color: #7f8c8d;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .wetland-list {
    padding: 20px;
  }

  .wetland-item {
    margin: 10px;
  }

  .wetland-name {
    font-size: 1.4rem;
  }

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