/* Sticky HTML Widget Styles */
.sticky-widget-wrapper {
    transition: all 0.3s ease;
}

.sticky-widget-wrapper.is-sticky {
    position: fixed;
    z-index: 9999;
    width: inherit;
    max-width: 100%;
}

.sticky-widget-wrapper.is-sticky.position-top {
    top: var(--sticky-offset, 20px);
}

.sticky-widget-wrapper.is-sticky.position-bottom {
    bottom: var(--sticky-offset, 20px);
}

.sticky-widget-content {
    background: #fff;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 767px) {
    .sticky-widget-wrapper.desktop-only {
        position: static !important;
    }
}