  .insta-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
       
            padding: 20px;
        
        }
        
        .instacontainer {
            background-color: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 1100px;
            padding: 30px;
            text-align: center;
        }

        .instalogo {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .instasubtitle {
            color: #555;
            margin-bottom: 30px;
            font-size: 16px;
        }

        .input-group {
            margin-bottom: 25px;
            text-align: left;
            width: 100%;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }

        input, select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s;
            box-sizing: border-box;
        }

        input:focus, select:focus {
            border-color: #833ab4;
            outline: none;
            box-shadow: 0 0 0 3px rgba(131, 58, 180, 0.2);
        }

        .instabtn {
            background: linear-gradient(45deg, #833ab4, #fd1d1d);
            color: white;
            border: none;
            padding: 14px 20px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 25px;
        }

        .instabtn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .instabtn:active {
            transform: translateY(0);
        }

        .results {
            display: none;
            margin-top: 20px;
            text-align: left;
        }

        .result-title {
            font-size: 19px;
            margin-bottom: 15px;
            color: #333;
            text-align: center;
        }

        .username-list {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }

        .username-item {
            background-color: #f8f8f8;
            padding: 12px 15px;
            margin-bottom: 10px;
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-left: 4px solid #833ab4;
            transition: all 0.2s;
        }

        .username-item:hover {
            background-color: #f0f0f0;
            transform: translateX(5px);
        }

        .copy-instabtn {
            background-color: #833ab4;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 5px;
            font-size: 13px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .copy-instabtn:hover {
            background-color: #6a2d95;
        }

        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background-color: #4CAF50;
            color: white;
            padding: 15px 25px;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            display: none;
            z-index: 1000;
        }

        /* Pagination Styles */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
            gap: 5px;
        }

        .page-instabtn {
            background-color: #f8f8f8;
            border: 1px solid #ddd;
            padding: 8px 12px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
            min-width: 40px;
            font-size: 14px;
        }

        .page-instabtn:hover {
            background-color: #e9e9e9;
        }

        .page-instabtn.active {
            background-color: #833ab4;
            color: white;
            border-color: #833ab4;
        }

        .page-instabtn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .page-info {
            margin-top: 10px;
            color: #555;
            font-size: 14px;
            text-align: center;
        }

        .pagination-controls {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
        }

        .pagination-controls button {
            background-color: #833ab4;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
        }

        .pagination-controls button:hover {
            background-color: #6a2d95;
        }

        .pagination-controls button:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }

        @media (max-width: 600px) {
            .instacontainer {
                padding: 20px;
            }
            
            .instalogo {
                font-size: 32px;
            }
            
            .pagination {
                flex-wrap: wrap;
            }
        }















        