.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}

/* Delete modal confirmation code */

  .modal {
            display: none;
            position: fixed;
            z-index: 1;
            padding-top: 100px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgb(0, 0, 0);

            background-color: rgba(0, 0, 0, 0.4);

        }


        .modal-content {
            background-color: #fefefe;
            margin: auto;
            padding: 50px 30px;
            border: 1px solid #888;
            border-radius: 10px;
            width: 100%;
            max-width: 500px;
            text-align: center;
            position: relative;
            box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        }



        .close {
            color: #aaaaaa;
            float: right;
            font-size: 50px;
            font-weight: bold;
            position: absolute;
            top: 5px;
            right: 15px;
            transition: .3s linear;
            line-height: 30px;
        }


        .close:hover,
        .close:focus {
            color: #000;
            text-decoration: none;
            cursor: pointer;
        }

        .confirmation {
            margin: 0px;
            margin-bottom: 50px;
            font-size: 26px;
            font-weight: bold;
            color: #606060;

        }

        button {
            transition: .3s linear;
            cursor: pointer;
        }

        .delete-btn {
            padding: 10px 20px;
            font-size: 20px;
            font-weight: bold;
            border-radius: 6px;
            color: white;
            background: #ff0000a8;
            border: 1px solid red;
        }

        .delete-btn:hover {
            background: red;
        }

        .cancel-btn {
            padding: 10px 20px;
            font-size: 20px;
            font-weight: bold;
            border-radius: 6px;
            color: white;
            background: green;
            border: 1px solid green;
        }

        .cancel-btn:hover {
            background: #045604f9;
        }

        .btn-group {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
