.fake-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    max-width: 350px;
    border-left: 4px solid #4CAF50;
    animation: slideIn 0.5s ease-out;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 15px;
    position: relative;
}

.notification-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    margin-right: 12px;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.notification-text {
    flex: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.notification-message {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    margin-bottom: 4px;
    font-weight: 500;
}

.notification-time {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.notification-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    color: #333;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .fake-notification {
        left: 10px;
        right: 10px;
        max-width: none;
        bottom: 10px;
    }
    
    .notification-content {
        padding: 12px;
    }
    
    .notification-image {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .notification-message {
        font-size: 13px;
    }
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
    .fake-notification {
        background: #2d2d2d;
        border-left-color: #4CAF50;
    }
    
    .notification-message {
        color: #fff;
    }
    
    .notification-time {
        color: #bbb;
    }
    
    .notification-close {
        color: #bbb;
    }
    
    .notification-close:hover {
        color: #fff;
    }
}