#popup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(233, 233, 233) 0%, rgb(211, 211, 211) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
#popup-content {
    background:  rgb(122, 135, 153);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 8px rgba(121,126,135, 0.9);
    font-size: 0.8em;
    color: #fff;
    border: 1px solid #fff;
    text-align: justify;
}
#popupbuttons {
    text-align: center;
}

button {
    padding: 10px 20px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.confirm {
    background-color: #28a745;
    color: white;
}
.deny {
    background-color: #dc3545;
    color: white;
}

.buttonone {
    color:#ddd;
    border-radius: 1.5em;
    text-shadow: 1px 1px 1px #333;    
    box-shadow: 0 4px 8px rgba(122, 135, 153, 0.8);
    
  }
  
  .buttonone:active {
   top:1px;
  }
