/* Livhy Share Plugin CSS */
.livhy-share {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.livhy-share button {
    background: #25d366;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.2s;
}

.livhy-share button.livhy-share-copy {
    background: #007bff;
}

.livhy-share button.livhy-share-email {
    background: #ea4335;
}

.livhy-share button.livhy-share-native {
    background: #555;
}

.livhy-share button:hover {
    opacity: 0.85;
}

/* Mobile: Only show icons, hide text. Desktop: show icons and text */
.livhy-share-label {
    font-weight: bold;
    margin-right: 12px;
    font-size: 16px;
}

.livhy-share-btn-text {
    display: inline;
}

@media (max-width: 600px) {
    .livhy-share-label {
        display: block;
        margin-bottom: 8px;
    }

    .livhy-share-btn-text {
        display: none !important;
    }

    .livhy-share button {
        min-width: 40px;
        padding: 8px 10px;
        font-size: 20px;
    }
}