.gil-notification-modal {
            direction: rtl;
        }

        .gil-notification-modal .modal-dialog {
            max-width: 560px;
            margin: 1.25rem auto;
        }

        .gil-notification-content {
            position: relative;
            border: 0;
            border-radius: 26px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 24px 70px rgba(15, 23, 42, .28);
        }

        .gil-notification-content.is-text {
            padding: 0;
            background:
                radial-gradient(circle at top right, rgba(4, 84, 168, .16), transparent 34%),
                radial-gradient(circle at bottom left, rgba(0, 184, 148, .14), transparent 32%),
                #fff;
        }

        .gil-notification-close {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 20;
            width: 36px;
            height: 36px;
            border: 0;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            line-height: 1;
            font-size: 24px;
            color: #fff;
            background: rgba(15, 23, 42, .62);
            backdrop-filter: blur(8px);
            transition: all .22s ease;
        }

        .gil-notification-close:hover {
            background: rgba(15, 23, 42, .86);
            transform: rotate(90deg);
        }

        .gil-notification-image-shell {
            background: #f8fafc;
            text-align: center;
            line-height: 0;
        }

        .gil-notification-image-link {
            display: block;
        }

        .gil-notification-image {
            width: 100%;
            max-height: 76vh;
            object-fit: contain;
            display: block;
            background: #fff;
        }

        .gil-notification-text-shell {
            padding: 42px 34px 34px;
            text-align: center;
        }

        .gil-notification-badge {
            width: 62px;
            height: 62px;
            margin: 0 auto 18px;
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0454a8, #00b894);
            color: #fff;
            font-size: 28px;
            box-shadow: 0 16px 34px rgba(4, 84, 168, .22);
        }

        .gil-notification-title {
            margin: 0 0 16px;
            color: #0f172a;
            font-size: 22px;
            font-weight: 900;
            line-height: 1.8;
        }

        .gil-notification-body {
            color: #475569;
            font-size: 15px;
            font-weight: 500;
            line-height: 2.15;
        }

        .gil-notification-body p {
            margin-bottom: 10px;
        }

        .gil-notification-body img {
            max-width: 100%;
            height: auto;
            border-radius: 14px;
        }

        .gil-notification-actions {
            margin-top: 24px;
            display: flex;
            justify-content: center;
        }

        .gil-notification-action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 9px 22px;
            border-radius: 999px;
            background: linear-gradient(135deg, #0454a8, #00b894);
            color: #fff;
            font-size: 14px;
            font-weight: 800;
            text-decoration: none;
            box-shadow: 0 14px 28px rgba(4, 84, 168, .18);
            transition: all .22s ease;
        }

        .gil-notification-action-btn:hover {
            color: #fff;
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 18px 34px rgba(4, 84, 168, .26);
        }

        .gil-notification-sub-note {
            margin-top: 18px;
            color: #94a3b8;
            font-size: 12px;
            font-weight: 600;
        }

        @media (max-width: 767.98px) {
            .gil-notification-modal .modal-dialog {
                max-width: calc(100% - 24px);
                margin: .75rem auto;
            }

            .gil-notification-content {
                border-radius: 22px;
            }

            .gil-notification-close {
                top: 10px;
                left: 10px;
                width: 32px;
                height: 32px;
                font-size: 22px;
            }

            .gil-notification-text-shell {
                padding: 38px 22px 28px;
            }

            .gil-notification-title {
                font-size: 18px;
            }

            .gil-notification-body {
                font-size: 14px;
                line-height: 2;
            }

            .gil-notification-image {
                max-height: 72vh;
            }
        }