  /* ==============================================
           NOTIFICATION MODAL STYLES
           ============================================== */
        .notification-modal {
            display: none;
            position: fixed;
            z-index: 1100;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease-out;
            align-items: center;
            justify-content: center;
            padding: 20px;
            box-sizing: border-box;
        }

        .notification-modal:not(.active) {
            display: none !important;
        }

        .notification-modal.active {
            display: flex !important;
            align-items: center;
            justify-content: center;
        }

        .notification-content {
            background-color: var(--bg-color-2);
            padding: 0;
            border-radius: var(--pop-ups-radius);
            width: 100%;
            max-width: 500px;
            position: relative;
            animation: notificationSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: var(--cards-shadow);
            max-height: calc(100vh - 100px);
            min-height: auto;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            margin: 0 auto;
        }

        .notification-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px;
            border-bottom: 1px solid var(--border-bottom);
            flex-shrink: 0;
        }

        .notification-header i {
            width: 30px;
            height: 30px;
            font-size: 24px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .notification-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-color-1);
            margin: 0;
            line-height: 1.5;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .close-notification {
            width: var(--icon-btns-size);
            height: var(--icon-btns-size);
            background: var(--bg-color-2);
            border: 1px solid var(--btns-border);
            border-radius: var(--icon-btns-border);
            color: red;
            box-shadow: var(--cards-shadow);
            cursor: pointer;
            font-size: 16px;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .close-notification:hover {
            border-color: var(--cancel-btns-border-hover);
            transform: scale(1.05);
        }

        .notification-body {
            flex: 1;
            overflow-y: auto;
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .notification-body::-webkit-scrollbar {
            width: 6px;
        }

        .notification-body::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.05);
            border-radius: 10px;
        }

        .notification-body::-webkit-scrollbar-thumb {
            background: var(--button-theme-gradient);
            border-radius: var(--webkit-radius);
        }

        .notification-body::-webkit-scrollbar-thumb:hover {
            background: var(--webkit-hover);
        }

        .notification-icon {
            font-size: 80px;
            color: var(--orange);
            margin-bottom: 20px;
            animation: bellRing 2s ease-in-out infinite;
        }

        @keyframes bellRing {
            0%, 100% {
                transform: rotate(0deg);
            }
            10%, 30% {
                transform: rotate(-10deg);
            }
            20%, 40% {
                transform: rotate(10deg);
            }
            50% {
                transform: rotate(0deg);
            }
        }

        .notification-message {
            font-size: 1.1rem;
            color: var(--text-color-1);
            font-weight: 500;
            line-height: 1.6;
        }

        @keyframes notificationSlideIn {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Prevent body scroll when notification is open */
        body.notification-open {
            overflow: hidden;
        }

        /* ======================================================
           NOTIFICATION MODAL RESPONSIVE ADJUSTMENTS
           ====================================================== */

        /* Tablet view (741px to 1024px) */
        @media (max-width: 1024px) and (min-width: 741px) {
            .notification-modal {
                padding: 55px;
            }

            .notification-content {
                max-width: 480px;
                max-height: calc(100vh - 170px);
            }

            .notification-header {
                padding: 14px 18px;
            }

            .notification-title {
                font-size: 1.35rem;
            }

            .notification-icon {
                font-size: 75px;
            }

            .notification-message {
                font-size: 1.05rem;
            }
        }

        /* Small tablet and large mobile (481px to 740px) */
        @media (max-width: 740px) and (min-width: 481px) {
            .notification-modal {
                padding: 20px;
            }

            .notification-content {
                max-height: calc(100vh - 90px);
            }

            .notification-body {
                padding: 35px 25px;
            }

            .notification-icon {
                font-size: 70px;
            }
        }

        /* Mobile view (up to 480px) */
        @media (max-width: 480px) {
            .notification-modal {
                padding: 15px;
            }

            .notification-content {
                max-height: calc(100vh - 100px);
            }

            .notification-header {
                padding: 10px 15px;
            }

            .notification-header i {
                width: 27px;
                height: 27px;
                font-size: 22px;
            }

            .notification-title {
                font-size: 1.2rem;
            }

            .close-notification {
                width: 34px;
                height: 34px;
                font-size: 14px;
            }

            .notification-body {
                padding: 30px 20px;
            }

            .notification-icon {
                font-size: 65px;
                margin-bottom: 15px;
            }

            .notification-message {
                font-size: 1rem;
            }
        }

        /* Very small mobile (up to 320px) */
        @media (max-width: 320px) {
            .notification-modal {
                padding: 12px;
            }

            .notification-header {
                padding: 8px 12px;
            }

            .notification-header i {
                width: 24px;
                height: 24px;
                font-size: 20px;
            }

            .notification-title {
                font-size: 1.1rem;
            }

            .close-notification {
                width: 30px;
                height: 30px;
                font-size: 13px;
            }

            .notification-body {
                padding: 25px 15px;
            }

            .notification-icon {
                font-size: 60px;
                margin-bottom: 12px;
            }

            .notification-message {
                font-size: 0.95rem;
            }
        }

        /* Very very small mobile (up to 260px) */
        @media (max-width: 260px) {
            .notification-modal {
                padding: 10px;
            }

            .notification-content {
                max-width: 100%;
                max-height: calc(100vh - 40px);
                border-radius: 12px;
            }

            .notification-header {
                padding: 6px 10px;
            }

            .notification-header i {
                width: 20px;
                height: 20px;
                font-size: 16px;
            }

            .notification-title {
                font-size: 0.95rem;
            }

            .close-notification {
                width: 26px;
                height: 26px;
                font-size: 12px;
            }

            .notification-body {
                padding: 20px 12px;
            }

            .notification-icon {
                font-size: 50px;
                margin-bottom: 10px;
            }

            .notification-message {
                font-size: 0.85rem;
            }
        }