        .notification {
            position: fixed;
            top: 100px;
            right: 20px;
            width: 220px;
            height: 90px;
            background-color: #9B59B6;
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            font-family: Arial, sans-serif;
            opacity: 1;
            transition: opacity 0.5s ease-in-out;
            z-index: 9999;
            text-align: center;
            padding: 10px;
        }
        .notification-title {
            font-weight: bold;
            font-size: 14px;
            margin-bottom: 5px;
        }
        .notification-message {
            font-size: 12px;
        }
        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: rgba(255, 255, 255, 0.5);
            animation: progress 10s linear forwards;
        }
        @keyframes progress {
            from { width: 100%; }
            to { width: 0%; }
        }