
        .scroll-btn-left,
        .scroll-btn-right {
            display: none;
        }

        @media (max-width: 1115px) {

            .scroll-btn-left,
            .scroll-btn-right {
                display: block;
            }
        }

        @media (max-width: 1115px) {
            .scroll-buttons-wrapper {
                position: sticky;
                top: 0;
                z-index: 999;
                background: transparent !important;
                /* خلفية شفافة */
                backdrop-filter: none !important;
                /* بدون أي تأثير تغبيش */
                padding-top: 6px;
                padding-bottom: 6px;
            }
        }

        .loading-overlay {
            display: none;
            /* مخفي افتراضيًا */
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(4px);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }


        /* البطاقة */
        .loading-card {
            background: #ffffff;
            padding: 40px 50px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
            animation: fadeInScale 0.3s ease-in-out;
        }

        /* حجم السبينر */
        .spinner-lg {
            width: 4rem;
            height: 4rem;
        }

        /* النص */
        .loading-text {
            margin-top: 20px;
            font-size: 20px;
            font-weight: 500;
            color: #0d6efd;
        }

        /* أنيميشن */
        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }
  