
            .ai-responses-container {
                font-family: "Vazirmatn", sans-serif;
                direction: rtl;
                max-width: 1200px;
                margin: 0 auto;
                padding: 20px;
            }
            
            .ai-search-form {
                margin-bottom: 30px;
            }
            
            .ai-search-input {
                position: relative;
                max-width: 500px;
            }
            
            .ai-search-input input[type="search"] {
                width: 100%;
                padding: 12px 50px 12px 20px;
                border: 1px solid #ddd;
                border-radius: 30px;
                font-size: 16px;
                transition: all 0.3s;
            }
            
            .ai-search-input input[type="search"]:focus {
                border-color: #4361ee;
                box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
                outline: none;
            }
            
            .ai-search-input button {
                position: absolute;
                left: 15px;
                top: 50%;
                transform: translateY(-50%);
                background: none;
                border: none;
                color: #4361ee;
                font-size: 18px;
                cursor: pointer;
            }
            
            .ai-responses-table {
                width: 100%;
                overflow-x: auto;
                margin-bottom: 30px;
                border-radius: 8px;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            }
            
            .ai-responses-table table {
                width: 100%;
                border-collapse: collapse;
                min-width: 800px;
            }
            
            .ai-responses-table th {
                background-color: #4361ee;
                color: white;
                padding: 15px;
                text-align: right;
                font-weight: 600;
            }
            
            .ai-responses-table td {
                padding: 15px;
                border-bottom: 1px solid #eee;
                vertical-align: top;
            }
            
            .ai-responses-table tr:hover {
                background-color: #f8f9fa;
            }
            
            .ai-subject-title {
                font-weight: 600;
                color: #4361ee;
                margin-bottom: 5px;
            }
            
            .ai-preview {
                color: #555;
                max-width: 400px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            
            .ai-date {
                color: #777;
                white-space: nowrap;
            }
            
            .ai-date i {
                margin-left: 5px;
                color: #4361ee;
            }
            
            .ai-actions {
                text-align: center;
                white-space: nowrap;
            }
            
            .ai-btn {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 36px;
                height: 36px;
                border-radius: 50%;
                background: none;
                border: 1px solid #ddd;
                color: #555;
                cursor: pointer;
                transition: all 0.3s;
                margin: 0 3px;
            }
            
            .ai-btn:hover {
                background: #f0f0f0;
            }
            
            .ai-view:hover {
                color: #4361ee;
                border-color: #4361ee;
            }
            
            .ai-copy:hover {
                color: #4bb543;
                border-color: #4bb543;
            }
            
            .ai-pagination {
                display: flex;
                justify-content: center;
                margin-top: 30px;
            }
            
            .ai-pagination .page-numbers {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                margin: 0 5px;
                border-radius: 50%;
                border: 1px solid #ddd;
                color: #555;
                text-decoration: none;
                transition: all 0.3s;
            }
            
            .ai-pagination .page-numbers.current {
                background: #4361ee;
                color: white;
                border-color: #4361ee;
            }
            
            .ai-pagination .page-numbers:hover:not(.current) {
                background: #f0f0f0;
            }
            
            .ai-no-results {
                text-align: center;
                padding: 50px 20px;
                background: #f8f9fa;
                border-radius: 8px;
                margin: 30px 0;
            }
            
            .ai-no-results i {
                font-size: 50px;
                color: #4361ee;
                opacity: 0.5;
                margin-bottom: 20px;
            }
            
            .ai-no-results h3 {
                color: #333;
                margin-bottom: 10px;
            }
            
            .ai-no-results p {
                color: #666;
                margin: 0;
            }
            
            /* مودال */
            .ai-modal {
                display: none;
                position: fixed;
                z-index: 9999;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0,0,0,0.7);
            }
            
            .ai-modal-content {
                background-color: #fefefe;
                margin: 5% auto;
                padding: 30px;
                border: 1px solid #888;
                width: 80%;
                max-width: 800px;
                border-radius: 8px;
                position: relative;
                direction: rtl;
            }
            
            .ai-close {
                position: absolute;
                left: 20px;
                top: 15px;
                font-size: 28px;
                font-weight: bold;
                cursor: pointer;
            }
            
            .ai-close:hover {
                color: #f00;
            }
            
            #ai-modal-title {
                color: #4361ee;
                margin-bottom: 20px;
                padding-bottom: 10px;
                border-bottom: 1px solid #eee;
            }
            
            #ai-modal-content {
                max-height: 60vh;
                overflow-y: auto;
                line-height: 1.8;
            }
            
            #ai-copy-full {
                background: #4361ee;
                color: white;
                border: none;
                padding: 10px 20px;
                border-radius: 30px;
                cursor: pointer;
                transition: all 0.3s;
                display: flex;
                align-items: center;
                gap: 8px;
                margin-top: 20px;
            }
            
            #ai-copy-full:hover {
                background: #3a56d4;
            }
            
            #ai-copy-full.copied {
                background: #4bb543;
            }
            
            /* رسپانسیو */
            @media (max-width: 768px) {
                .ai-modal-content {
                    margin: 10% auto;
                    padding: 20px;
                    width: 90%;
                }
                
                .ai-responses-table th,
                .ai-responses-table td {
                    padding: 10px;
                }
            }
        