#fcb-contact-buttons {
    position: fixed;
    bottom: var(--fcb-bottom-offset, 20px);
    right: 20px;
    z-index: 9999;
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}
div#nutbat {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    padding: 3px;
}
#fcb-toggle-button {
    cursor: pointer;
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}
div#fcb-contact-buttons img {
    border-radius: 50%;
}
div#fcb-icons-container a {
    background: white;
    border-radius: 50%;
    padding: 1px;
}
#fcb-icons-container {
    margin-bottom: 25px;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

#fcb-icons-container a {
    display: block;
    margin-bottom: 10px;
}

#fcb-contact-buttons img {
    width: 40px;
    height: 40px;
}

/* CSS Transition for Smooth Visibility */
#fcb-icons-container.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto; /* Enables clicking when visible */
}
