.flex-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

:root {
  --peach: #e07a5f;
  --light-tan: #f4f1de;
  --mustard: #f2cc8f;
  --dark: #3d405b;
  --green: #81b29a;
}
/* end universal styles */
.row-number {
  background-color: var(--mustard);
  width: 30px;
  height: 30px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

p {
  font-family: "Kranky", serif;
  color: var(--light-tan);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.map-container__food-forest {
  background-color: var(--light-tan);
  width: 100vw;
  height: 80vh;
  padding: 3rem;
  margin: 0 auto;
}

.fruit-tree-line {
  width: 90vw;
  height: 5px;
  background-color: var(--dark);
}

.tree {
  width: 70px;
  height: 70px;
  border-radius: 35px;
}

.emergent {
  background-color: var(--dark);
}

.fruit-tree {
  background-color: var(--peach);
}

.aromatic {
  background-color: var(--green);
}

#plant-tooltip {
  display: none;
  position: fixed;
  z-index: 9999;
  max-width: 280px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  pointer-events: none; /* prevents tooltip from interfering with hover */
  font-size: 0.9rem;
  line-height: 1.5;
}

#plant-tooltip h3 {
  margin: 0 0 8px 0;
  font-size: 1rem;
}