.sfc-container {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    /* Stack upwards */
    gap: 10px;
}

.sfc-right {
    right: 20px;
    align-items: flex-end;
}

.sfc-left {
    left: 20px;
    align-items: flex-start;
}

.sfc-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    font-size: 20px;
}

.sfc-item:hover {
    transform: scale(1.1);
}

/* Tooltip Styling */
.sfc-tooltip {
    position: absolute;
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;

}

.sfc-right .sfc-tooltip {
    right: 60px;
    /* Push to the left of the button */
}

.sfc-left .sfc-tooltip {
    left: 60px;
    /* Push to the right of the button */
}

.sfc-item:hover .sfc-tooltip {
    opacity: 1;
}

.sfc-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 4px;
    /* Optional */
}