        /* Overlay covers the entire viewport */
        .modal-overlay-test {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            /* semi-transparent dark background */
            backdrop-filter: blur(10px);
            /* blur effect */
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }

        /* Modal content styling */
        .modal-content-test {
            background: #ffffff;
            /* background: #132337; */
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            max-width: 500px;
            width: 80%;
            text-align: center;
        }
