 /* Popup container */
        .popup {
            display: none; 
            position: fixed; 
            left: 0; 
            top: 0;
            width: 100%; 
            height: 100%; 
            background-color: rgba(0, 0, 0, 1);
            justify-content: center;
            align-items: center;
			z-index:99;
        }
		.popup h2{
			text-transform:capitalize;
		}

        /* Popup content */
        .popup-content {
            background-color: white;
            padding: 20px;
            border-radius: 5px;
            text-align: center;
        }

        /* Buttons */
        .btn {
            padding: 10px 20px;
            margin: 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .accept {
            background-color: green;
            color: white;
			font-weight:600;
        }

        .decline {
            background-color: red;
            color: white;
			font-weight:600;
        }
