
        /* Custom dialog styles */
        .custom-dialog {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #FFD833;
            background-image: url(/img/about_bg.png);
            padding: 20px;
            border-radius: 8px;
            border: 4px solid #000;
            box-shadow: 8px 8px 0 #0a0a0a;
            z-index: 99999;
            max-width: 400px;
            text-align: center;
        }
        .custom-dialog p {
            margin: 0 0 20px;
            color: #333;
        }
        .custom-dialog button {
            padding: 10px 20px;
            /* margin: 0 10px; */
            /* border: none;
            border-radius: 4px; */
            font-size: 16px;
        }
        /* .custom-dialog .btn-switch {
            background-color: #28a745;
            color: white;
        }
        .custom-dialog .btn-stay {
            background-color: #dc3545;
            color: white;
        }
        .custom-dialog .btn-switch:hover {
            background-color: #218838;
        }
        .custom-dialog .btn-stay:hover {
            background-color: #c82333;
        } */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 9999;
        }