.w-full {
  width: 100%;
}

.flex {
  display: flex;
}

.gap-8 {
  gap: 2rem;
}

.w-24 {
  width: 6rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.rounded-t-lg {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.rounded-b-lg {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.border {
  border-width: 1px;
  border-style: solid;
}

.border-danger-500 {
  border-color: var(--system-danger-500, #eb5757);
}

.bg-danger-500 {
  background-color: var(--system-danger-500, #eb5757);
}

.text-white {
  color: #ffffff;
}

.font-semibold {
  font-weight: 600;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.calendar-event-card {
  color: var(--greyscale-900) !important;
  padding: 24px 0px;
  border-bottom: 1px solid var(--greyscale-200, #eaeaea);
  gap: 1rem;
}

.text-primary-500 {
  color: var(--primary-blue-500, #2762d4);
}

.h-11 {
  height: 2.75rem;
}

.h-7 {
  height: 1.75rem;
}

.gap-1 {
  gap: 0.25rem;
}

.flex-col {
  flex-direction: column;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.calendar-event-content {
  display: flex;
  width: 100%;
  gap: 1rem;
  flex-direction: column;
}

@media (min-width: 768px) {
  .calendar-event-content {
    gap: 2rem;
    flex-direction: row;
  }

  .calendar-event-card {
    padding: 24px 32px;
    gap: 2rem;
  }
}
