html{
    display: flex;
    justify-content: center;
    }
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            /* Disable zooming */
            touch-action: manipulation; /* For modern browsers */
            -ms-touch-action: manipulation; /* For IE 10 and earlier */
            user-zoom: fixed; /* For older WebKit-based browsers */
            zoom: 100%; /* Reset zoom level */
            /* Prevent text resizing */
            text-size-adjust: 100%;
            display: flex;
            align-items: center;
            max-width: 480px;
            flex-direction: column;
            margin: 10px 0px;
        }
        .topnav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: nowrap;
            padding: 10px;
        }
        
        .topnav span {
            background: green;
            border-radius: 15px;
            padding: 5px 10px;
            font-size: larger;
            font-weight: bold;
            color: white;
        }
        
        .topnav button {
            background: transparent;
            border: none;
            padding: 0;
            font-size: xx-large;
            font-weight: 600;
            color: royalblue;
        }
        
        .topnav p {
            margin: 0;
        }
        .profile {
            text-align: center;
            padding: 20px;
            display: flex;
            flex-direction: column;
    align-items: center;
        }
        .profile img {
            border-radius: 50%;
            width: 100px;
            height: 100px;
            object-fit: cover;
        }
        .profile a {
            background: deepskyblue;
            padding: 8px 15px;
            color: white;
            font-weight: 700;
            border-radius: 5px;
            position: relative;
            top: 10px;
            text-decoration: none !important;
        }
        .bio {
            margin-top: 10px;
        }
        .sharebutton {
            display: flex;
            align-items: center;
            padding: 3px 15px;
            border: black;
            background: brown !important;
            color: white;
            border-radius: 15px;
            width: 26%;
            justify-content: space-between;
        }
        
        .sharebutton span {
            font-size: 16px !important;
        }
        .social-links {
            margin-top: 20px;
            display: flex;
    justify-content: center;
        }
        .social-links a {
                margin: 10px;
    text-decoration: none;
    color: #fff;
    background: #040404;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: x-large;
}
        
            .grid-container {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                padding: 10px;
            }
            
            .grid-item {
                    background-color: #2a3235;
                    color: white;
                    border-radius: 10px;
                    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                    text-align: center;
                    
                        transition: transform 0.2s;
                        box-sizing: border-box;
                        overflow: hidden;
            }
            
            
            .grid-item img {
                width: 100%;
                height: 150px;
              
                object-fit: cover;
            }
            
            .grid-item h3 {
                    margin-top: 5px;
                    font-size: 1em;
                    padding: 5px;
                }
            
            .grid-item p {
                margin: 10px 0;
                color: #666;
            }
            
            .grid-item a {
                display: inline-block;
                margin-top: 10px;
                padding: 10px 20px;
                background-color: #007bff;
                color: #fff;
                text-decoration: none;
                border-radius: 5px;
            }
            .grid-item i {
                font-style: normal;
                background: yellow;
                color: #2a3235;
                width: 100% !important;
                display: block;
                font-weight: 600;
            }
            
            .grid-item a:hover {
                background-color: #0056b3;
            }
        .ad {
            margin: 0px auto;
            text-align: center;
            width: 100%;
            height:auto;
        }
        
.searchbararea {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 15PX;
        flex-direction: column;
}

.searchbararea form {
    display: flex;
}

.searchbararea p {
    width: 100%;
    font-size: larger;
    display: flex;
    align-items: center;
    justify-content: center;
}
.searchbararea p span {
    color: blueviolet;
    font-family: sans-serif;
    font-weight: 700;
    font-size: 1.2em;
}
.searchbararea p a {
    color: red;
    font-size: 1.6em;
    font-weight: 900;
    margin-left: 5px;
}
.grid-item span {
    color: black;
    padding: 0px 10px;
    position: absolute;
    border-radius: 10px;
    margin: 10px;
}
input#searchbar {
    flex: 1;
    height: 59px;
    padding: 0px 25px;
    font-size: 1.2em;
    border-radius: 15px 0px 0px 15px;
    border: 1px solid #b7b6b6;
    border-right: none;
    outline: none;
}
button {
    color: #5b5b5b;
    border: none;
    /*width: 59px;*/
    border-radius: 0% 30% 30% 0%;
    /*height: 59px;*/
    position: relative;
    /*line-height: 0px !important;*/
    border: 1px solid #c9c8c8;
    border-left: none;
    outline: none;
}
button span {
    font-size: 38px !important;
}

#ad-overlay {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100% !important;
min-height: 100% !important;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
flex-direction: column;
}

#ad-container {
    width: 100%;
   max-width: 450px;  
    background: #fff;
    padding: 10px;
    border-radius: 0px;
    text-align: center;
    position: relative;
}

#ad-container .ad-content {
    padding: 5px;
    /*background-image: url(https://digitaltreed.com/influencer/wp-content/uploads/2024/08/waiting-mr-beans-holiday-ixdcqr5r6rgskuen.webp);*/
    background-size: cover;
    background-position: center bottom;
    /* background: #f1f1f1; */
    border-radius: 5px;
}

#timer {
    font-size: 18px;
    margin: 10px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

#skip-btn {
    background: #ff0000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    
padding: 5px 10px;
margin: 4px;
font-size: larger;
}
a.disabled {
  pointer-events: none;
background: #cccccc !important;
    cursor: not-allowed;
}

.ad-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#ad-overlay a.material-icons {
    color: red;
    font-size: 38px;
    font-weight: 900;

}