/**
 * 配置历史管理样式
 */

.config-history-list {
    max-height: 500px;
    overflow-y: auto;
}

.config-history-item {
    padding: 15px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: all 0.2s;
}

.config-history-item:hover {
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0,123,255,0.1);
}

.config-history-item.current {
    border-color: #28a745;
    background: #f8fff9;
}

.config-history-item h6 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
}

.config-history-actions {
    display: flex;
    gap: 5px;
}

.config-history-actions .btn {
    padding: 4px 8px;
    font-size: 0.875rem;
}

/* 对比表格样式 */
.config-comparison-table {
    font-size: 0.9rem;
}

.config-comparison-table code {
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.85em;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .config-history-item {
        padding: 10px;
    }
    
    .config-history-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }
    
    .config-history-actions .btn {
        width: 100%;
    }
}

