.efcnb-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.efcnb-content {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between text and button */
}

.efcnb-text {
    padding: 5px 10px;
    font-size: 16px;
    color: var(--text-color, #FFFFFF);
    background-color: var(--text-bg-color, #000000);
    border-radius: 5px;
    font-family: Arial, sans-serif;
}

.efcnb-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: var(--svg-size, 56px);
    height: var(--svg-size, 56px);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Neutral shadow */
    border-radius: 50%;
    background-color: var(--svg-color, #000000); /* Use Button Background Color */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.efcnb-icon {
    width: 100%;
    height: 100%;
}

.efcnb-icon .outer {
    fill: var(--svg-color, #000000); /* Button Background Color */
    transition: fill 0.3s ease;
}

.efcnb-icon .inner {
    fill: var(--svg-inner-color, #FFFFFF); /* Inner Element Color */
    transition: fill 0.3s ease;
}

.efcnb-button:hover {
    transform: translateX(1px) translateY(-1px) rotate(1deg); /* Subtle shaking effect */
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.4); /* Enhance shadow */
}

/* Prevent unwanted color changes on hover */
.efcnb-button:hover .outer {
    fill: var(--svg-color); /* Keep static color for outer element */
}

.efcnb-button:hover .inner {
    fill: var(--svg-inner-color); /* Keep static color for inner element */
}