.event-container {
  padding: 20px;
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

#left-section img {
  width: 100%;
}

/* right section start */

#right-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#show-total-donation {
  display: flex;
  align-items: center;
  gap: 5px;
}

#show-total-donation img {
  width: 20px;
}

#right-section p {
  font-size: 14px;
  color: gray;
  text-align: justify;
}

#right-section input {
  padding: 10px;
}

#right-section button {
  padding: 10px;
}

/* right section end */

/* donation record section */
#all-donation-records h1 {
  text-align: center;
}
.newRecord {
  width: 70%;
  margin: 20px auto;
  padding: 10px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.newRecord h3 {
  color: rgb(0, 170, 0);
  font-size: 16px;
  margin-bottom: 10px;
}

.newRecord p {
  color: gray;
  font-size: 12px;
  text-align: right;
}

.newRecord h3 span {
  font-style: italic;
}

/* draft */

#modal-container {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  display: none;
}

#modal-box {
  background-color: white;
  width: 420px;
  height: 330px;
  display: inline-flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

#modal-box h1 {
  font-size: 30px;
}

#modal-box img {
  width: 30px;
}

#modal-box p strong {
  font-size: 24px;
}

#modal-box button {
  padding: 10px 15px;
}