/* 分析结果区域 */
.analysis-result {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.analysis-result h3 {
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #4caf50;
    padding-bottom: 8px;
}

.result-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 10px;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.result-number {
    background: #4caf50;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.result-name {
    font-weight: 600;
    color: #333;
    flex: 1;
}

.result-confidence {
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    background: #e9ecef;
}

/* 加载状态 */
.loading {
    display: none;
    text-align: center;
    padding: 40px;
    color: #666;
}

.loading.show {
    display: block;
}

.loading .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2196f3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 