.userInput > input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 30px;
  }
  .modal-window {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
  }
  
  .modal-window:target {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .modal-window > div {
    width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2em;
    background: white;
    border-radius: 10px;
  }
  
  .modal-close {
    color: #aaa;
    line-height: 50px;
    font-size: 80%;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 70px;
    text-decoration: none;
  }
  .modal-close:hover {
    color: black;
  }
  
  
  
  .userInput > input {
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 30px;
  }
  
  .container1 {
  
  
  
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 50%;
    margin: auto;
  
    text-align: center;
  }

  #admin_cust{
    /* box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); */
    height: 100%;
    width:300px;
    /* margin */
    /* padding-left: 50%; */
    padding-top: 1.5%;
    border-radius: 5px;
    font-size: 25px;
    /* font-weight: bold; */
    background-color: rgb(233, 230, 230);
    color: black;
    /* border: 1px solid red; */
    text-align: center;
  }
  #admin-user-btn{
    display: flex;
    width: 100%;
    padding-top: 2%;
    padding-bottom: 2%;
    justify-content: space-around;
  }