
#snowfallCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000; /* Ensures it's above all other elements */
    pointer-events: none; /* Prevents interaction */
    user-select: none; /* Prevents text selection */
}

#vr_button{
    position: fixed;
    z-index: 9999;
    left: 20px;
    bottom: 80px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* border: 2px solid red; */
    background-image: url(../images/360.png);
    background-size: cover;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.459);
}
#vr_button a{
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
        #xmas_button{
            position: fixed;
            z-index: 9999;
            left: 20px;
            bottom: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            /* border: 2px solid red; */
            background-image: url(../images/xmas_button_bg.jpg);
            background-size: cover;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.459);
        }

         /* Modal Popup Start */
        .modal-header, .modal-footer {
        display: none;
        }
        .modal-content {
        background: transparent;
        border: none;
        box-shadow: none;
        }
        .modal-body {
        padding: 0;
        }
        
        .modal-footer {
            border-top: none; /* Remove the border */
        }
    
        .modal-footer-center {
            display: flex;
            justify-content: center;
        }
    
        /* Custom close button styles */
        .modal-footer .btn-close-custom {
            width: 50px;
            height: 50px;
            border-radius: 50%; /* Make it circular */
            background-color: red; /* Red background */
            color: white; /* White font color */
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: "Arial", sans-serif; /* You can replace with any font, or include external fonts */
            font-size: 1.8rem;
            border: none;
            cursor: pointer;text-align: center;
            padding-left: 20px;
        }

        .modal-footer .btn-close-custom:hover {
            background-color: darkred; /* Darker red on hover */
        }