/* Deconiq - Social Sharing (+ Viber)
 * Bricks core styles target .brxe-post-sharing (not our element), so we provide
 * a minimal base layout here. Override anything below via your own class / CSS,
 * e.g. %root% { gap: 1rem; flex-direction: column; }  (root is the <ul>). */
.brxe-deconiq-post-sharing-v {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}
.brxe-deconiq-post-sharing-v li { margin: 0; padding: 0; }
.brxe-deconiq-post-sharing-v a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.brxe-deconiq-post-sharing-v svg { width: 1em; height: 1em; }

/* "Link kopiran" toast (Copy link service) */
.dq-copy-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(12px);
    background: #222;
    color: #fff;
    padding: 0.6rem 1.1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.2;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 99999;
    pointer-events: none;
}
.dq-copy-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
