﻿
.share-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.share-label {
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.share-btn {
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    background: #f1f1f1;
}

    .share-btn:hover {
        opacity: 0.85;
    }

.whatsapp {
    background: #25D366;
    color: #fff;
}

.telegram {
    background: #229ED9;
    color: #fff;
}

.email {
    background: #666;
    color: #fff;
}

.copy {
    background: #444;
    color: #fff;
}


