/*
 * BeatIt_SocialProof
 * De waarden komen letterlijk uit de custom CSS die in Fomo stond, zodat de
 * notificatie er na de overstap identiek uitziet.
 */
.beatit-sp {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 320px;
    max-width: calc(100vw - 40px);
    padding: 10px 14px 10px 11px;
    box-sizing: border-box;
    background: #ffffff;
    border-left: 3px solid #F29322;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    transform: translateX(-120%);
    opacity: 0;
    transition: transform .4s ease, opacity .4s ease;
}

.beatit-sp[hidden] {
    display: none;
}

.beatit-sp.is-visible {
    transform: translateX(0);
    opacity: 1;
}

.beatit-sp__image {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
    background: #f1f5f9;
}

.beatit-sp__body {
    min-width: 0;
}

.beatit-sp__text {
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    color: #1e293b;
}

.beatit-sp__text strong {
    font-weight: 600;
}

.beatit-sp__time {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    color: #64748b;
}

.beatit-sp__close {
    position: absolute;
    top: 4px;
    right: 6px;
    padding: 2px 5px;
    border: 0;
    background: transparent;
    color: #94a3b8;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
}

.beatit-sp__close:hover,
.beatit-sp__close:focus-visible {
    color: #1e293b;
}

.beatit-sp a.beatit-sp__link {
    color: #233965;
    text-decoration: none;
}

.beatit-sp a.beatit-sp__link:focus-visible {
    outline: 2px solid #233965;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .beatit-sp {
        transition: opacity .2s ease;
        transform: none;
    }
}
