 #exampleModalLong{
z-index: 1000000;
 }
 #exampleModalLong .modal-dialog {
            max-width: 650px;
            margin: 1.75rem auto;
            
        }

        #exampleModalLong .modal-content {
            border: none;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
        }

        #exampleModalLong .modal-header {
            border-bottom: none;
            padding: 20px 30px 10px;
            background: transparent;
        }

        #exampleModalLong .modal-header .close {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            opacity: 1;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            margin: 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        #exampleModalLong .modal-header .close:hover {
            background: #ffffff;
            transform: rotate(90deg);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        #exampleModalLong .modal-header .close span {
            font-size: 28px;
            color: #1976d2;
            line-height: 1;
        }

        #exampleModalLong .modal-body {
            padding: 20px 30px 1px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            margin: 0 15px;
            border-radius: 15px;
        }

        #exampleModalLong #summaryBox {
            color: #1a1a1a;
        }

        #exampleModalLong #summaryBox > div:first-child {
            color: #0d47a1;
            background: linear-gradient(135deg, #1976d2, #0d47a1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        #exampleModalLong #summaryBox strong {
            color: #1565c0;
        }

        #exampleModalLong #summaryBox ul {
            list-style: none;
            padding-left: 9px;
            padding-top: 5px;
        }

        #exampleModalLong #summaryBox ul li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 12px;
            line-height: 1.6;
        }

        #exampleModalLong #summaryBox ul li:before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            width: 22px;
            height: 22px;
            background: linear-gradient(135deg, #42a5f5, #1976d2);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: bold;
        }

        #exampleModalLong .modal-footer {
            border-top: none;
            padding: 15px 30px 25px;
            background: transparent;
            justify-content: center;
        }

        #exampleModalLong .modal-footer .btn-secondary {
            background: linear-gradient(135deg, #1976d2, #1565c0);
            border: none;
            color: white;
            padding: 12px 40px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
        }

        #exampleModalLong .modal-footer .btn-secondary:hover {
            background: linear-gradient(135deg, #1565c0, #0d47a1);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
        }

        /* Loading spinner styling */
        #exampleModalLong .fa-spinner {
            color: #1976d2;
            font-size: 24px;
        }

        /* Opacity text styling */
        #exampleModalLong [style*="opacity:.7"] {
            color: #546e7a !important;
        }
