/* The floating container */
.share-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

/* Social media buttons */
.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

.share-button:hover {
    transform: scale(1.1);
}

/* Individual button colors */
.facebook { background-color: #3b5998; }
.twitter { background-color: #1da1f2; }
.linkedin { background-color: #0077b5; }
.pinterest { background-color: #E60023; }
.whatsapp { background-color: #25D366; }

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .share-container {
        flex-direction: row;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        padding: 5px;
    }
    .share-button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}