main {
  padding: 10px 0;
}

main .container {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.event-card {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  background: white;
  padding: 10px;
  display: flex;
  align-items: center;
  border-bottom: 0.3px solid #ccc;
}

.left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.date-time {
  width: 200px;
  height: 80px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  letter-spacing: 2px;
}

.dt1 {
  background: #eceff8;
}
.dt2 {
  background: #f8ecf8;
}
.dt3 {
  background: #f8ecec;
}
.dt4 {
  background: #eef8ec;
}

.date {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0;
}

.time {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
}

.event-name {
  font-size: 1.3rem;
}

.event-detail {
  font-size: 12px;
  color: #4b4b4b;
  margin-top: 5px;
}

.add-to-calender {
  width: 120px;
  display: inline-block;
  background: #000000;
  color: white;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 5px;
  border-radius: 6px;
  margin: 0 10px;
  text-decoration: none;
}
.add-to-calender:hover {
  box-shadow: #cfd5e0 0 0 10px 5px;
  transform: scale(1.1);
  color: #fff;
}

@media (max-width: 576px) {
  .event-card {
    flex-direction: column;
  }
}
