#angie-sp-container-c89d4333 {
    position: fixed;
    z-index: 999999;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#angie-sp-container-c89d4333.sp-pos-bottom-left {
    left: 20px;
}

#angie-sp-container-c89d4333.sp-pos-bottom-right {
    right: 20px;
}

.angie-sp-popup {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: 320px;
    gap: 12px;
    position: relative;
    animation: sp-slide-in 0.4s ease-out;
    transition: opacity 0.3s, transform 0.3s;
}

.angie-sp-popup.sp-hiding {
    opacity: 0;
    transform: translateY(20px);
}

.sp-theme-light .angie-sp-popup {
    background: #fff;
    color: #333;
}
.sp-theme-light .angie-sp-popup a {
    color: #0073aa;
}
.sp-theme-light .sp-time {
    color: #777;
}

.sp-theme-dark .angie-sp-popup {
    background: #222;
    color: #eee;
}
.sp-theme-dark .angie-sp-popup a {
    color: #66c0e8;
}
.sp-theme-dark .sp-time {
    color: #aaa;
}

.sp-img img, .sp-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    object-fit: cover;
}
.sp-placeholder {
    background: #ddd;
}

.sp-content {
    flex: 1;
    font-size: 13px;
    line-height: 1.4;
}
.sp-content p {
    margin: 0 0 4px 0;
    font-size: 13px;
}
.sp-content a {
    display: block;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 4px;
}
.sp-time {
    font-size: 11px;
}

.sp-close {
    background: none;
    border: none;
    position: absolute;
    top: 8px;
    right: 8px;
    cursor: pointer;
    font-size: 16px;
    color: inherit;
    opacity: 0.5;
}
.sp-close:hover {
    opacity: 1;
}

@keyframes sp-slide-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}