/* Grey icon buttons */
.shalom-post-actions {
    display: flex;
    gap: 14px;
    margin: 10px 0;
}

.shalom-icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f2f2f2;
    border: 1px solid #ddd;
    color: #555;
    font-size: 15px;
    cursor: pointer;
}

.shalom-icon-btn:hover {
    background: #e6e6e6;
}

/* Overlay */
.shalom-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 99999;
}

/* Popup inner (desktop centered) */
.shalom-popup-inner {
    background: #fff;
    max-width: 380px;
    width: 90%;
    margin: 20% auto;
    border-radius: 12px;
    overflow: hidden;
}

/* Header */
.shalom-popup-header {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

/* Rows */
.shalom-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #f2f2f2;
    font-size: 15px;
}

.shalom-row i {
    width: 22px;
    text-align: center;
    font-size: 18px;
}

/* Brand colors */
.fa-facebook-f { color:#1877F2; }
.fa-whatsapp { color:#25D366; }
.fa-envelope { color:#666; }
.fa-x-twitter { color:#000; }
.fa-telegram { color:#229ED9; }
.fa-linkedin-in { color:#0A66C2; }

/* Mobile bottom sheet */
@media (max-width: 767px) {
    .shalom-popup-inner {
        position: absolute;
        bottom: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 14px 14px 0 0;
        animation: slideUp .3s ease-out;
    }

    @keyframes slideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }
}
