.recent-sales-notification {
    position: fixed;
    z-index: 999999;
    max-width: 350px;
    min-width: 280px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease-in-out;
    border-left: 4px solid #28a745;
    pointer-events: none;
}

.recent-sales-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.recent-sales-notification.bottom-left {
    bottom: 20px;
    left: 20px;
}

.recent-sales-notification.bottom-right {
    bottom: 20px;
    right: 20px;
}

.recent-sales-notification.top-left {
    top: 20px;
    left: 20px;
}

.recent-sales-notification.top-right {
    top: 20px;
    right: 20px;
}

.notification-icon {
    width: 48px;
    height: 48px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon svg {
    width: 24px;
    height: 24px;
    fill: #28a745;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.notification-name {
    font-weight: 600;
    color: #333;
}

.notification-product {
    font-size: 14px;
    font-weight: 500;
    color: #28a745;
    margin-bottom: 3px;
}

.notification-location {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notification-time {
    display: flex;
    align-items: center;
    gap: 3px;
}

.verified-badge {
    color: #28a745;
    font-size: 14px;
}

@media (max-width: 768px) {
    .recent-sales-notification {
        max-width: 300px;
        padding: 12px;
    }
}