/**
 * SuperCL Social Share Button Styles
 *
 * @package SuperCL
 * @subpackage CSS
 * @since 1.1
 */

.share-buttons-wrapper {
    text-align: center;
    margin: 5px 0;
}

.share-buttons-list {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.share-btn:hover {
    opacity: 0.9;
}

.share-btn--wa {
    background-color: #25D366;
}

.share-btn--fb {
    background-color: #1877F2;
}

.share-btn--tw {
    background-color: #000;
}

.share-btn--print {
    background-color: #666;
}