body {
  font-family: Arial, sans-serif;
  padding: 20px;
}
body ul {
  margin: 0;
  padding: 0;
}
body ul li {
  display: block;
  margin: 0;
  padding: 0;
  margin-left: 20px;
}
body ul li:nth-child(even) {
  margin-bottom: 15px;
}
body .persona {
  margin-bottom: 30px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
body .persona h2, body .persona h3 {
  color: #333;
  margin-top: 40px;
}
body table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
body table th, body table td {
  padding: 10px;
  border: 1px solid #ccc;
  text-align: left;
}
body table tr:first-of-type td {
  background-color: #f4f4f4;
}
body .post-it-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
body .post-it-container .stage-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 220px;
}
body .post-it-container .stage-column .post-it {
  padding: 10px;
  border-radius: 5px;
  color: #333;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 14px;
}
body .post-it-container .stage-column .post-it.objective {
  background-color: #FFFF99;
  /* yellow */
}
body .post-it-container .stage-column .post-it.behaviour {
  background-color: #FFA500;
  /* orange */
}
body .post-it-container .stage-column .post-it.positive-feeling {
  background-color: #98FB98;
  /* light green */
}
body .post-it-container .stage-column .post-it.negative-feeling {
  background-color: #FF6B6B;
  /* red */
  color: #fff;
}

/*# sourceMappingURL=style.css.map */
