.fixed-message {
            position: fixed;
            bottom: 108px;
            right: 20px;
            background-color: #ffffff;
            padding: 8px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            text-align: center;
            direction: rtl;
            z-index: 100;
            max-width: 250px;
        }
        .fixed-message .close-btn {
            position: absolute;
            top: 5px;
            right: 10px;
            border: none;
            background: none;
            font-size: 20px;
            font-weight: bold;
            color: #666;
            cursor: pointer;
        }
        .fixed-message .close-btn:hover {
            color: #333;
        }
        .fixed-message img {
            width: 60px;
            margin-top: 10px;
        }