.meweb-salert-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
    max-width: 320px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 12px;
    display: none;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.meweb-salert-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.meweb-salert-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.meweb-salert-content {
    flex: 1;
    min-width: 0;
}

.meweb-salert-name {
    font-weight: bold;
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
    line-height: 14px;
}

.meweb-salert-text {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
    line-height: 13px;
}

.meweb-salert-time {
    font-size: 12px;
    color: #999;
    line-height: 12px;
    font-style: italic;
}

@media (max-width: 767px) {
    .meweb-salert-container {
        top: 10px;
        left: 10px;
        max-width: none;
        padding: 6px;
    }
}

