    .custom-floating-container {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 999999;
        padding: 0 !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .custom-floating-image {
        max-width: 130px;
        height: auto;
        box-shadow: none;
        background: none;
        padding: 0;
        transition: transform 0.3s ease;
	text-decoration:none;
    }
    
    .custom-floating-image:hover {
        transform: scale(1.05);
    }
    
    .custom-floating-text {
        position: relative;
        text-align: center;
        margin-top: -15px;
        font-size: 14px;
        color: #333;
        max-width: 130px;
        word-wrap: break-word;
        font-weight: bold;
        text-decoration:none;
        transform: perspective(100px) rotateX(-2deg);
	text-decoration:none;
    }
    
    .custom-floating-close {
        display: none !important;
    }
    
    .custom-static-container {
        width: 100%;
        text-align: center;
        padding: 0;
        margin: 0;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration:none;
    }
    
    .custom-static-image {
        max-width: 130px;
        height: auto;
        margin: 0 auto;
        display: block;
       
        box-shadow: none;
        background: none;
        padding: 0;
        transition: transform 0.3s ease;
        text-decoration:none;
    }
    
    .custom-static-image:hover {
        transform: scale(1.05);
    }
    
    .custom-static-text {
        position: relative;
        text-align: center;
        margin-top: -5px;
        font-size: 13px;
        color: #333;
        max-width: 200px;
        font-weight: bold;
        transform: perspective(100px) rotateX(-2deg);
        text-decoration:none;

    }