body {
    background: hsl(0, 40%, 98%);
    font-family: "Quicksand", sans-serif;
}
header {

border-bottom: 2px solid #ccc;
}


h1 {
    color: #b33939;
    font-weight: 700;
}


.btn-danger {
    background-color: #862D2D;
    border: none;
    border-radius: 30px;
    padding: 10px 30px;
}

.btn-danger:hover {
    background-color: #c63838;
}


#zugriffe {
  display: none;
  margin-bottom: 30px;
}

#eventID {
  
  display: inline;
}

#error_message_event_id {
  max-width: 30%;
  margin: auto;
  margin-top: 5rem;
  color: #862D2D;
  background-color: rgba(229, 179, 184, 0.5);
  padding: 10px;
  display: none;
}

/* Pop-up */

.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  border-radius: 10px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}


.popup-content button {
  background-color: #862D2D;
  color: #fff;
  border: none;
  border-radius: 35px;
  padding: 10px;
  font-size: 18px;
  width: 250px;
  box-shadow: 0px 5px 10px #ae4d4d;
  margin-top: 20px;
  margin-bottom: 20px;
  cursor: pointer;
}

.popup-content button:hover {
  background-color: #c63838;
}
