.qwykm-docs {
  margin-top: 32px;
  padding: 20px;
  background-color: #f9f9f9;
  border-left: 4px solid #409eff;
  font-size: 14px;
  color: #333;
  line-height: 1.8;
}
.qwykm-docs h2 {
  margin-top: 0;
  font-size: 16px;
  color: #409eff;
}
.qwykm-docs p {
  margin-bottom: 12px;
}
.qwykm-query-container {
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.qwykm-input-section {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.qwykm-input {
  flex: 1;
  min-width: 200px;
  padding: 10px 16px;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.qwykm-input:focus {
  border-color: #409eff;
}

.qwykm-btn {
  padding: 10px 24px;
  background: #409eff;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.qwykm-btn:hover {
  background: #66b1ff;
}

.qwykm-btn:active {
  background: #337ecc;
}

.qwykm-result-section {
  border: 1px solid #ebeef5;
  border-radius: 4px;
  overflow: hidden;
}

.qwykm-result-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.qwykm-result-table thead {
  background-color: #f5f7fa;
}

.qwykm-result-table th {
  padding: 12px 16px;
  text-align: left;
  color: #606266;
  font-weight: 600;
  border-bottom: 1px solid #ebeef5;
}

.qwykm-result-table tbody tr {
  border-bottom: 1px solid #ebeef5;
}

.qwykm-result-table tbody tr:last-child {
  border-bottom: none;
}

.qwykm-result-table td {
  padding: 12px 16px;
  color: #303133;
}

.qwykm-result-table tbody tr:hover {
  background-color: #f5f7fa;
}