        body, html {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }
        .FDFD-bottom-banner {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: black;
            color: white;
            text-align: center;
            padding: 9pt 0;
            font-size: 0.6em;
            z-index: 1000001; /* Ensure it is always on top */
        }
        .FDFD-main-content {
            /* No padding adjustments needed */
        }
        .FDFD-overlay {
            position: fixed;
            z-index: 9999; /* Highest priority */
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-color: black; /* Solid black background */
            display: none; /*  */
            justify-content: top;
            align-items: center;
            flex-direction: column;
            color: white;
            text-align: center;
        }
        .FDFD-emoji {
            font-size: 5em;
            margin-bottom: 20px;
            margin-top: 1em;
        }
        .FDFD-overlay p {
            font-size: 1em;
            margin-bottom: 30px;
        }
        .FDFD-buttons {
            display: flex;
            gap: 20px;
        }
        .FDFD-buttons button {
            padding: 10px 20px;
            font-size: 1em;
            border: none;
            cursor: pointer;
        }
        .FDFD-yes {
            background-color: green;
            color: white;
        }
        .FDFD-no {
            background-color: red;
            color: white;
        }