
.iptv-notify {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 300px;
    background: #f9f9f9;
    border-left: 4px solid #0073e6;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    z-index: 9999;
    display: none;
    animation: slideIn 0.3s ease;
    color: #111;
}

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

.iptv-notify small {
    display: block;
    margin-top: 4px;
    color: #666;
}
