/* 原有的样式保持不变 */

.query-panel {
    background-color: #ffffff;
    border-radius: 10px; /* 圆角 */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* 阴影 */
    padding: 20px;
    margin-bottom: 20px;
}

.query-panel h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.query-panel form label {
    margin-right: 10px;
    vertical-align: middle; /* 垂直居中对齐 */
}

.query-panel form input {
    margin-right: 20px;
    padding: 10px; /* 增加内边距，让输入框更美观 */
    border: 1px solid #e5e5e5;
    border-radius: 5px; /* 圆角输入框 */
    outline: none;
    transition: border-color 0.3s ease; /* 过渡效果 */
    height: 20px; /* 统一高度 */
    vertical-align: middle; /* 垂直居中对齐 */
}

.query-panel form input:focus {
    border-color: #0066b3; /* 聚焦时边框颜色变化 */
}

.query-panel form button {
    padding: 10px 25px; /* 调整内边距使高度一致 */
    background-color: #0066b3;
    color: #fff;
    border: none;
    border-radius: 5px; /* 圆角按钮 */
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease; /* 增加 transform 过渡效果 */
    height: 42px; /* 统一高度 */
    vertical-align: middle; /* 垂直居中对齐 */
}

.query-panel form button:hover {
    background-color: #0465bf;
    transform: scale(1.05); /* 鼠标悬停时放大按钮 */
}

.query-panel form button:active {
    transform: scale(0.95); /* 鼠标点击时缩小按钮 */
}

.query-divider {
    border: none;
    border-top: 1px solid #e5e5e5; /* 横线样式 */
    margin-top: 5px;
    margin-bottom: 15px;
}

/* 新增的表格美化样式，去掉圆角属性 */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* 阴影 */
}

.styled-table th,
.styled-table td {
    border: 1px solid #e5e5e5;
    padding: 12px 15px; /* 增加内边距 */
    text-align: center;
}

.styled-table th {
    background-color: #f1f2f5;
    color: #333;
    font-weight: bold;
}

.styled-table tbody tr:nth-child(even) {
    background-color: #f9f9f9; /* 偶数行背景颜色 */
}

.styled-table tbody tr:hover {
    background-color: #f0f8ff; /* 鼠标悬停时背景颜色 */
}
#error-message {
    color: red;
    margin-top: 5px;
} 
#query-button:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
}
footer {
    background-color: #1D2129;
    color: white;
    padding: 32px 0;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.text-center {
    text-align: center;
}

.text-lg {
    font-size: 18px;
}

.font-bold {
    font-weight: bold;
}

.mb-4 {
    margin-bottom: 16px;
}

.text-gray-400 {
    color: #9CA3AF;
}

.text-sm {
    font-size: 14px;
}

.max-w-md {
    max-width: 768px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}