.event-list-compact {
  border-spacing: 10px;
}

.event-list-compact td {
  vertical-align: top;
}

.event-list-compact td:nth-child(1) {
  font-weight: bold;
  white-space: nowrap;
}

.event-list {
  border-spacing: 25px;
  width: 100%;
}

.event-list td {
  vertical-align: top; /* Align content to the top */
  border-bottom: 1px solid #ccc;
}

.event-list td:nth-child(1) {
  border-bottom: 1px solid transparent;
  width: 70px;
}

.event-list tr {
  border-bottom: 1px solid #ccc;
}

.event-date {
  display: flex;
  justify-content: center; /* horizontal centering */
  align-items: center; /* vertical centering */
  text-align: center;
  border: 1px solid #ccc; /* just to show the box */
  padding: 5px;
  width: 60px;
  height: 60px;
  margin-right: 10px;
  background-color: darkblue;
  color: white;
  border-radius: 5px;
  font-size: 0.9rem;
}

.event-private {
  color: rgb(184, 51, 11);
  text-transform: capitalize;
  font-size: 0.8rem;
  font-weight: bold;
  margin-left: 10px;
}

.event-notes {
  color: red;
}
