.modal {
  display: none; /* Standardmäßig ausgeblendet */
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0,0,0,0.6); 
}

.modal-content {
  background-color: #fff1f2;
  margin: 15% auto; 
  padding: 30px;
  border: 2px solid #a02a30;
  width: 50%; 
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.btn-confirm {
    padding: 10px;
    background-color: #079300;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.btn-close {
    padding: 10px;
    background-color: #a02a30;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}