﻿/* Share Bar Styles */
.share-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 20px 0;
    justify-content: center;
}

.share-bar span {
    color: var(--gray, #6c757d);
    margin-right: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.share-btn i {
    font-size: 18px;
}

/* Social Media Colors */
.share-btn.facebook { background-color: #3b5998; }
.share-btn.twitter { background-color: #1DA1F2; }
.share-btn.whatsapp { background-color: #25D366; }
.share-btn.linkedin { background-color: #0077B5; }
.share-btn.email { background-color: var(--gray, #6c757d); }
.share-btn.native { background-color: #6c5ce7; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .share-bar {
        justify-content: flex-start;
    }
    
    .share-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}



