/*0 3px 5px rgba(75, 85, 68, 0.8);*/
/*Wildflower theme colors*/
/*blue theme*/
.plant-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background-color: #f7f7f7;
}
.plant-profile-characteristics-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
}
.plant-profile-characteristics-item > span {
  padding-right: 0.5rem;
}
.plant-profile-header {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  background-color: rgba(53, 76, 53, 0.1);
  color: #333;
}
@media screen and (max-width: 991px) {
  .plant-profile-header {
    flex-direction: column;
  }
}
.plant-profile-latin-name {
  font-style: italic;
  font-weight: regular;
  margin-right: 1rem;
  font-size: 1.4rem;
}
.plant-profile-english-name {
  font-weight: bold;
  font-size: 1.4rem;
}
.plant-profile-french-name {
  font-weight: regular;
  font-size: 1.4rem;
}
.plant-profile-names {
  display: flex;
  flex-direction: column;
}
.plant-profile-description {
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

img {
  height: auto;
  max-width: 100%;
}

.plant-image {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  width: 100%;
  gap: 1px;
}

.image-title {
  background-color: #79ac78;
  color: #fff;
  text-align: center;
}

.icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.5rem;
}

.low {
  background-color: firebrick;
  color: #fff;
}

.none {
  background-color: grey;
}

.medium {
  background-color: orange;
}

.high {
  background-color: green;
  color: #fff;
}

.inaturalist-legend {
  display: flex;
  gap: 4px;
  flex-flow: wrap;
  justify-content: center;
}

.profile-update-links {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.profile-update-links a {
  padding: 0.5rem 1rem;
  border: 1px solid 1px solid light-dark(#79ac78, #79ac78);
  border-radius: 0.5rem;
  background-color: #fff;
  color: #79ac78;
  text-decoration: none;
}
.profile-update-links a:hover {
  background-color: #618264;
  color: #fff;
}
@media (max-width: 768px) {
  .profile-update-links {
    flex-direction: column;
  }
}
