.display-event {
  margin: 10rem 25rem;

  box-shadow: 0 2.4rem 4.8rem rgba(11, 80, 1, 0.2);
}

.page-title-display {
  border-radius: 2rem;
  margin-bottom: 10rem;
  text-decoration: none;
}

.display-description {
  text-transform: uppercase;
}

.grid-entered-members,
.grid-add-user {
  display: grid;
  grid-template-columns: 5rem 1fr 10rem 10rem;
}

.grid-admin-Menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.entered-members-title,
.reserves-title,
.share-event-title {
  grid-column: 1 / -1;
  font-size: 3rem;
}

.reserves-title {
  border-radius: 0rem;
}

.display-item,
.display-item:link,
.display-item:visited,
.display-item:hover,
.display-item:active {
  font-size: 3rem;
  text-align: center;
  border-top: 1px solid;
  border-color: #c9c9c9;
  padding: 2rem 0;
  text-decoration: none !important;
  -webkit-text-fill-color: inherit; /* 🔑 fixes Safari */
  color: inherit;
}

.display-item-nolink{
  text-decoration: none;
  color: inherit;
}

.display-add,
.display-add-user {
  display: flex;
  align-content: center;
  grid-column: 1 / -3;
  padding: 2rem 0;
  border-top: 1px solid;
  border-color: #c9c9c9;
}

.display-add-user {
  border-top: none;
}

.display-add-item {
  width: 100%;
  height: 100%;
  font-size: 3rem;
  text-align: center;
  color: #0b5001;
  border: none;
  outline: none;
}

.display-form-add {
  grid-column: 1 / -1;
}

.display-add-btn,
.display-add-btn-user {
  display: flex;
  align-self: center;
  justify-content: center;
  grid-column: 3 / -1;
  border-top: 1px solid;
  border-color: #c9c9c9;
  padding: 2rem 0;
}

.display-add-btn-disable,
.display-add-btn-user-disable {
  display: flex;
  align-self: center;
  justify-content: center;
  grid-column: 3 / -1;
  border-top: 1px solid;
  border-color: #c9c9c9;
  padding: 2rem 0;
}

.display-add-btn-user {
  border-top: none;
}

.btn-display-submit:focus {
  outline: none;
  font-size: 3rem;
}

.paid-button {
  display: flex;
  align-self: center;
  justify-content: center;
  grid-column: 3 / -1;
  border-top: 1px solid;
  border-color: #c9c9c9;
  padding: 2rem 0;
  border: none;
}

.subscriber-paid {
  background-color: #8ce99a;
}

.display-whatsapp-icon {
  color: #0b5001;
  width: 5rem;
  height: 5rem;
  padding-left: 1.5rem;
  cursor: pointer;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  border: #0b5001 solid 3px;
  width: 30rem;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.popup-text {
  grid-column: 1 / -1;
  justify-self: center;
  line-height: 3rem;
}

.popup-btn-row {
  justify-self: center;
}

.popup-btn-solo {
  display: flex;
  justify-content: center;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-size: 2.5rem;

  /* font-family: Tahoma, Arial, sans-serif; */
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #06d85f;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}
