.event-wishlist-section {
  padding-top: 55px;
  padding-bottom: 120px;
}

.event-wishlist-section.events-created-section .page-title {
  font-weight: 700;
  font-size: 27px;
  line-height: 30px;
  margin-right: auto;
}

.event-wishlist-section .page-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.event-wishlist-section .page-title-wrap .event-archive {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  transition: 0.3s all ease;
  cursor: pointer;
  background-image: url(../assets/icons/BoxArrowUp.svg);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  padding-left: 30px;
  background-position: left center;
}

.event-wishlist-section .page-title-wrap .event-archive:hover {
  color: #a22a7d;
}

.event-wishlist-section .events-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 35px;
}

.create-event-btn {
  font-weight: 800;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #fff;
  padding: 13px 30px;
  border-radius: 8px;
  background-color: #a22a7d;
  transition: 0.3s all ease;
}

.create-event-btn:hover {
  background-color: #2c478c;
}

.create-event-btn img {
  margin-right: 10px;
  vertical-align: middle;
}

.section-subtitle-events {
  width: 100%;
  grid-column: 1 / -1;
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  color: #2c478c;
}

.drafted-events-grid .section-subtitle-events {
  color: #a22a7d !important;
  font-size: 18px;
}

.event-creation-btns {
  margin-left: -20px;
  margin-right: -20px;
  padding: 0px 23px;
  display: flex;
  align-items: center;
  gap: 27px;
  padding-top: 20px;
  border-top: 1px solid #e9e9e9;
  margin-top: 19px;
}

.edit-btns {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  transition: 0.3s all ease;
}

.edit-btns:hover {
  color: #a22a7d;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 20, 20, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  display: none;
}

.popup {
  background: #fff;
  border-radius: 15px;
  padding: 55px 80px 60px 80px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup h2 {
  margin-bottom: 35px;
  font-weight: 700;
  font-size: 27px;
  line-height: 30px;
}

.popup .popup.button-group {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.popup button {
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex: 1;
}

.popup .btn-no {
  background: white;
  border: 1px solid rgba(20, 20, 20, 1);
  font-weight: 800;
  font-size: 12px;
  line-height: 20px;
  vertical-align: middle;
  text-transform: uppercase;
  padding: 13px 76px;
  border-radius: 7px;
  cursor: pointer;
  transition: 0.3s all ease;
}

.popup .btn-no:hover {
  background: rgba(20, 20, 20, 1);
  border-color: rgba(20, 20, 20, 1);
  color: #fff;
}

.popup .btn-yes {
  background: rgba(162, 42, 125, 1);
  border: 1px solid rgba(162, 42, 125, 1);
  font-weight: 800;
  font-size: 12px;
  line-height: 20px;
  vertical-align: middle;
  text-transform: uppercase;
  padding: 13px 76px;
  border-radius: 7px;
  cursor: pointer;
  color: #fff;
  transition: 0.3s all ease;
}
.popup .button-group {
  display: flex;
  justify-content: space-between;
}
.popup .btn-yes:hover {
  background: rgba(44, 71, 140, 1);
  border: 1px solid rgba(44, 71, 140, 1);
}
.not-published-btns {
  margin-left: -20px;
  margin-right: -20px;
  padding: 0px 23px;
  display: flex;
  align-items: center;
  gap: 27px;
  padding-top: 20px;
  border-top: 1px solid #e9e9e9;
  margin-top: 19px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.not-published-btns .event-creation-btns {
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 27px;
  padding-top: 0;
  border-top: 0;
  margin-top: 0;
}
.not-published-btns .pusblish-event {
  font-weight: 800;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #fff;
  background-color: rgba(162, 42, 125, 1);
  border-radius: 7px;
  padding: 10px 24px;
  transition: 0.3s all ease;
}
.not-published-btns .pusblish-event:hover {
  background-color: rgba(44, 71, 140, 1);
}
@media (max-width: 480px) {
  .popup {
    padding: 30px 25px;
  }

  .popup button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .event-wishlist-section {
    padding-top: 32px;
    padding-bottom: 80px;
  }

  .event-wishlist-section.events-created-section .page-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
  }

  .event-wishlist-section .events-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .section-subtitle-events {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .create-event-btn {
    font-weight: 800;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 1px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #fff;
    padding: 13px 30px;
    border-radius: 8px;
    background-color: #a22a7d;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .drafted-events-grid .event-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px 20px 16px 20px;
  }

  .event-wishlist-section .page-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .popup {
    background: #fff;
    border-radius: 15px;
    padding: 24px;
    max-width: 520px;
    width: fit-content;
    text-align: center;
    animation: slideIn 0.3s ease-out;
    width: 80vw;
  }

  .popup .button-group {
    display: flex;
    justify-content: space-between;
    gap: 8px;
  }

  .popup .btn-yes {
    background: rgba(162, 42, 125, 1);
    border: 1px solid rgba(162, 42, 125, 1);
    font-weight: 800;
    font-size: 12px;
    line-height: 20px;
    vertical-align: middle;
    text-transform: uppercase;
    padding: 13px 6px;
    border-radius: 7px;
    cursor: pointer;
    color: #fff;
    transition: 0.3s all ease;
    width: 50%;
    display: flex;
    justify-content: center;
  }
  .popup .btn-no {
    background: white;
    border: 1px solid rgba(20, 20, 20, 1);
    font-weight: 800;
    font-size: 12px;
    line-height: 20px;
    vertical-align: middle;
    text-transform: uppercase;
    padding: 13px 6px;
    border-radius: 7px;
    cursor: pointer;
    transition: 0.3s all ease;
    width: 50%;
    justify-content: center;
    display: flex;
  }
  .popup h2 {
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
}
}
