.main-site-button-container {
    position: absolute;
    top: 40px; 
    right: 50px;
    z-index: 999;
    /* Add these two lines to stop it from blocking the page */
    width: auto;
    height: auto;
    pointer-events: none; 
}

.main-site-button {
    /* Add this to make the button itself clickable again */
    pointer-events: auto; 
    
    background-color: #001f3f; 
    color: #ffffff !important;
    padding: 10px 20px;
    text-decoration: none !important;
    font-family: serif; 
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
}