/**
 * PS Social Sharing Module
 * CSS styles
 */

 .ps-social-sharing {
    margin: 20px 0;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 4px;
}

.ps-social-sharing-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.ps-sharing-buttons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.ps-sharing-button {
    margin-right: 8px;
    margin-bottom: 8px;
}

.ps-sharing-button a {
    display: inline-flex;
    align-items: left;
    padding: 8px 8px;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.ps-sharing-button i {
    margin-right: 5px;
    font-size: 16px;
    display: flex;
}

/* WhatsApp */
.ps-sharing-button.whatsapp a {
    background-color:transparent;
    border-radius:60px;
}
.ps-sharing-button.whatsapp a:hover {
    background-color: #128C7E;
    border-radius:60px;
    color: #fff;
}

/* Telegram */
.ps-sharing-button.telegram a {
    background-color: transparent;
    border-radius:60px;
}
.ps-sharing-button.telegram a:hover {
    background-color: #006699;
    border-radius:60px;
    color: #fff;
}

/* Email */
.ps-sharing-button.email a {
    background-color: transparent;
    border-radius:60px;
}
.ps-sharing-button.email a:hover {
    background-color: #666666;
    border-radius:60px;
    color: #fff;
}

/* Copy Link */
.ps-sharing-button.copy-link a {
    background-color: transparent;
    border-radius:60px;
}
.ps-sharing-button.copy-link a:hover {
    background-color: #222222;
    border-radius:60px;
    color: #fff;
}

/* Copy feedback */
.copy-feedback {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    margin-left: 5px;
    animation: fadeInOut 2s ease;
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { opacity: 0; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ps-sharing-buttons {
        flex-direction: column;
    }
    
    .ps-sharing-button {
        margin-right: 0;
        margin-bottom: 8px;
        width: 100%;
    }
    
    .ps-sharing-button a {
        width: 100%;
        justify-content: left;
    }
}