* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
}
body {
  height: 100vh;
  width: 100%;
  padding-top: 5%;
  padding-left: 14%;
  padding-right: 14%;
  background-color: #e9f2ff;
}
body p {
  margin-top: 10px;
}
.container {
  margin-top: 20px;
  display: flex;
  gap: 18px;
  flex-direction: column;
}
.items {
  background-color: #ffffff;
  height: 6rem;
  border-radius: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 20px;
}
.date {
  height: 4.5rem;
  border-radius: 10px;
  text-align: center;
  width: 6.5rem;
  background-color: #f7dad3;
}

.time {
  font-weight: 400;
  font-size: 26px;
}
.day {
  margin-bottom: -6px;
}
.content {
  margin-left: 60px;
}

.description {
  width: 34rem;
}
.btn {
  background-color: #000000;
  color: white;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
  gap: 4px;
  font-weight: 500;
  border-radius: 10px;
  margin-left: 80px;
}
.btn:hover {
  cursor: pointer;
}

.disabled {
  background-color: white;
  color: black;
  font-size: 18px;
  margin-left: 5.2rem;
}
