.parsa-social-container {
    margin: 25px 0;
    padding: 10px 0;
    text-align: center;
    direction: ltr;
}

.parsa-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin: 0 6px 10px 6px;
    border-radius: 12px; /* گوشه‌های کمی گرد */
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.parsa-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    opacity: 0.9;
}

.parsa-icon {
    pointer-events: none; /* جلوگیری از انتخاب متن */
}

/* ریسپانسیو برای موبایل */
@media (max-width: 480px) {
    .parsa-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin: 0 4px 8px 4px;
    }
}