/* Image Share Buttons Styles */

/* Container for the share buttons */
.isb-share-container {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    padding: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Show buttons on hover */
.isb-image-wrapper:hover .isb-share-container {
    opacity: 1;
}

/* Individual share button */
.isb-share-button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.isb-share-button:hover {
    transform: scale(1.1);
}

/* Facebook button */
.isb-facebook {
    background-color: #3b5998;
    color: white;
}

/* Pinterest button */
.isb-pinterest {
    background-color: #bd081c;
    color: white;
}

/* SVG icons */
.isb-share-button svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Image wrapper */
.isb-image-wrapper {
    position: relative;
    display: inline-block;
}

/* Responsive adjustments for small screens */
@media (max-width: 768px) {
    .isb-share-container {
        bottom: 5px;
        right: 5px;
    }
    
    .isb-share-button {
        width: 25px;
        height: 25px;
    }
    
    .isb-share-button svg {
        width: 14px;
        height: 14px;
    }
}
