
    .idb-image-container {
        position: relative;
        display: inline-block;
        margin-bottom: 25px;
        width: 100%;
        text-align: center;
    }
    
    .idb-buttons-container {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
        flex-wrap: wrap;
    }
    
    .idb-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        text-decoration: none !important;
        color: white !important;
        font-size: 16px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        position: relative;
        overflow: hidden;
    }
    
    .idb-button:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    
    .idb-button i {
        transition: all 0.3s ease;
    }
    
    .idb-button:hover i {
        transform: scale(1.2);
    }
    
    .idb-download {
        background: linear-gradient(135deg, #4CAF50, #2E7D32);
    }
    
    .idb-whatsapp {
        background: linear-gradient(135deg, #25D366, #128C7E);
    }
    
    .idb-facebook {
        background: linear-gradient(135deg, #4267B2, #3B5998);
    }
    
    .idb-instagram {
        background: linear-gradient(135deg, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737);
    }
    
    .idb-plus {
        background: linear-gradient(135deg, #9E9E9E, #616161);
        cursor: pointer;
    }
    
    .idb-pinterest {
        background: linear-gradient(135deg, #E60023, #BD081C);
    }
    
    .idb-twitter {
        background: linear-gradient(135deg, #1DA1F2, #0D8ECF);
    }
    
    .idb-tiktok {
        background: linear-gradient(135deg, #000000, #25F4EE, #FE2C55);
    }
    
    .idb-more-options {
        display: none;
        position: absolute;
        bottom: 50px;
        right: 0;
        background: white;
        padding: 10px;
        border-radius: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        z-index: 100;
        gap: 8px;
        flex-wrap: wrap;
        width: max-content;
    }
    
    .idb-more-options.active {
        display: flex;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }
    
    .idb-plus:hover {
        animation: pulse 1s infinite;
    }
    