/* Position styles for PG Floating Button */
.pg-floating-button-wrapper {
    position: fixed;
    z-index: 999;
}

/* Position classes */
.pg-floating-button-wrapper.position-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pg-floating-button-wrapper.position-top-left {
    top: 0;
    left: 0;
}

.pg-floating-button-wrapper.position-top-right {
    top: 0;
    right: 0;
}

.pg-floating-button-wrapper.position-top-center {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.pg-floating-button-wrapper.position-bottom-left {
    bottom: 0;
    left: 0;
}

.pg-floating-button-wrapper.position-bottom-right {
    bottom: 0;
    right: 0;
}

.pg-floating-button-wrapper.position-bottom-center {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Button styles */
.pg-floating-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Icon and text alignment */
.pg-floating-button i,
.pg-floating-button .button-text,
.pg-floating-button .button-shortcode {
    display: inline-block;
}

/* Shortcode content styling */
.pg-floating-button .button-shortcode {
    line-height: 1;
}