/**
 * ai.css - AI智能排座样式
 */

.ai-seating-container {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.ai-section-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-section-title::before {
    content: '🤖';
    font-size: 18px;
}

.ai-workflow {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ai-step {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #e9ecef;
}

.ai-step-header {
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
    font-size: 14px;
}

.ai-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ai-textarea {
    width: 100%;
    min-height: 80px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    resize: vertical;
    font-family: inherit;
}

.ai-textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.ai-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
}

.ai-btn-primary {
    background-color: #4a90e2;
    color: white;
}

.ai-btn-primary:hover {
    background-color: #357abd;
}

.ai-btn-success {
    background-color: #28a745;
    color: white;
}

.ai-btn-success:hover {
    background-color: #218838;
}

.ai-tips {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    line-height: 1.4;
}

.ai-tips code {
    background: #e9ecef;
    padding: 2px 4px;
    border-radius: 3px;
    font-family: monospace;
}
