/* Pin It Button Styles */
.pin-it-button {
position: fixed;
z-index: 9999;
width: 50px; /* Button size */
height: 50px; /* Button size */
background: url('https://assets.pinterest.com/images/pinit_fg_en_rect_gray_20.png') no-repeat center center;
background-size: contain;
cursor: pointer;
opacity: 0.8;
transition: opacity 0.3s ease;
}
/* Pin It Button hover effect */
.pin-it-button:hover {
opacity: 1;
}
/* Positioning the button in top-right corner */
.pin-it-top-right {
top: 20px;
right: 20px;
}
/* Positioning the button in top-left corner */
.pin-it-top-left {
top: 20px;
left: 20px;
}
/* Ensure images inside posts are not overlapped */
.post img {
max-width: 100%;
}