.pinterest-image-wrap {
    position: relative;
    display: inline-block;
}

.pinterest-save-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e60023;
    color: white;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    opacity: 1; /* Changed from 0 to 1 to always display */
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.pinterest-save-button:hover {
    background-color: #ad081b;
    color: white;
    text-decoration: none;
}

/* Removed hover rule since buttons are always visible now */

/* Mobile styles */
@media (max-width: 767px) {
    .pinterest-save-button {
        opacity: 0.9;
        padding: 6px 10px;
        font-size: 12px;
    }
}