/* Force hover effect on all sidebar images */
.pkp_structure_sidebar img, 
.block_custom img, 
[id^="customblock-"] img {
    transition: all 0.3s ease-in-out !important;
    display: block !important;
    margin: 10px auto !important;
}

.pkp_structure_sidebar img:hover, 
.block_custom img:hover, 
[id^="customblock-"] img:hover {
    transform: scale(1.1) !important; /* 10% ज़ूम होगा */
    filter: drop-shadow(0px 5px 10px rgba(0,0,0,0.2)) !important; /* हल्की परछाई */
}
