body {
  background-color: #000B1A;
  color: #fff;
  font-family: 'Arial', sans-serif;
}

.agenda-container {
  text-align: center;
}

.agenda-container h1 {
  font-size: 22px;
  margin-bottom: 30px;
  color: #fff;
}

.calendar-icon {
  font-size: 1.8rem;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #111827;
  border-radius: 8px;
  padding: 20px;
  width: 260px;
  text-align: left;
  position: relative;
  border: 1px solid white;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #aaa;
  margin-bottom: 10px;
}

.card-date {
  background-color: #1d9bf0;
  color: white;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-text p {
  margin-bottom: 10px;
  color: #fff;
}

.card-text a {
  text-decoration: none;
  color: #1d9bf0;
  font-weight: bold;
}

.plus {
  font-size: 1.2rem;
  cursor: pointer;
  color: #1d9bf0;
}

.time {
  color: #fff;
