/* CSS styles for the modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 9;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.5); /* Set the background color to black with 50% opacity */
            backdrop-filter: blur(5px); /* Apply a blur effect to the background */
            opacity: 0; /* Start with 0 opacity */
            transition: opacity 0.3s ease; /* Add transition effect for opacity */
        }

        .modal.show {
            display: block;
            opacity: 1; /* Change opacity to 1 when modal is shown */
        }

        .modal-content {
            background-color: #000000e6;
            margin: 15% auto;
            padding: 20px;
            border: 1px solid #888;
            max-width: 750px;
            width: 80%;
            color: white;
            opacity: 1;
            font-family: "Prompt", sans-serif;
            border-radius: 10px;
        }

        .modal-content a {
            color: #2ce6f2;
            transition: color 0.3s ease; /* Add transition effect for color change */
        }

        .modal-content a:hover {
            color: rgba(44, 229, 242, 0.699); /* Change color to a faded version on hover */
        }

        .modal-content h2 {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .modal-content ul {margin-left: 25px !important;}
        .modal-content ul li {list-style: circle !important; font-size: 16px !important;}

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }

        .close:hover,
        .close:focus {
            color: #ffffff;
            text-decoration: none;
            cursor: pointer;
        }