.fss-social-buttons {
    position: fixed;
    right: 10px; /* Adjusted to stick to right edge */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px; /* Reduced gap for tighter stacking */
    z-index: 1000;
}

.fss-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
   // background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
}

.fss-button:hover {
    //background-color: #555;
    transform:scale(1.2)
}

.fss-button svg {
    width: 20px;
    height: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
    .fss-social-buttons {
        right: 5px; /* Closer to edge on mobile */
        gap: 6px; /* Tighter spacing */
    }
    
    .fss-button {
        width: 35px; /* Slightly smaller buttons */
        height: 35px;
    }
    
    .fss-button svg {
        width: 16px; /* Smaller icons */
        height: 16px;
    }
}