#dsb-sticky-button-wrapper {
    position: fixed;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    border: none;
    outline: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#dsb-sticky-button-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#dsb-sticky-button-wrapper:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.dsb-button-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 8px;
	line-height: 1em;
}
.dsb-button-link .et-pb-icon {
    font-size: inherit;
}
.dsb-button-link:hover,
.dsb-button-link:focus,
.dsb-button-link:active {
    color: inherit;
    text-decoration: none;
}

.dsb-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dsb-icon .et-pb-icon {
    font-family: 'ETmodules';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Position classes */
.dsb-position-bottom-right {
    bottom: 20px;
    right: 20px;
}

.dsb-position-bottom-left {
    bottom: 20px;
    left: 20px;
}

.dsb-position-top-right {
    top: 20px;
    right: 20px;
}

.dsb-position-top-left {
    top: 20px;
    left: 20px;
}

.dsb-position-center-right {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.dsb-position-center-left {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    #dsb-sticky-button-wrapper {
        font-size: 14px !important;
        padding: 12px 20px !important;
    }
}

@media screen and (max-width: 480px) {
    #dsb-sticky-button-wrapper {
        font-size: 12px !important;
        padding: 10px 15px !important;
    }
    
    .dsb-position-bottom-right,
    .dsb-position-bottom-left {
        bottom: 10px;
    }
    
    .dsb-position-top-right,
    .dsb-position-top-left {
        top: 10px;
    }
    
    .dsb-position-center-right,
    .dsb-position-center-left {
        transform: translateY(-50%);
    }
}

