  .modal {
            display: none; /* Hidden by default */
            position: fixed; /* Stay in place */
            z-index: 1; /* Sit on top */
            left: 0;
            top: 0;
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
        }
        .modal-content {
            position: relative;
            margin: 15% auto; /* Center the modal */
            padding: 20px;
            background-color: white;
            border-radius: 5px;
            width: 50%; /* Adjust width as needed */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            text-align: center;
        }
        .modal-header {
            font-size: 20px;
            margin-bottom: 10px;
        }
        .modal-footer {
            margin-top: 20px;
        }
        .modal-footer button {
            margin: 0 10px;
            padding: 10px 20px;
            border: none;
            cursor: pointer;
            border-radius: 5px;
            font-size: 16px;
        }
        .confirm-btn {
            background-color: #007BFF;
            color: white;
        }
        .cancel-btn {
            background-color: #f44336;
            color: white;
        }
        .confirm-btn:hover {
            background-color: #0056b3;
        }
        .cancel-btn:hover {
            background-color: #d32f2f;
        }