body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  padding-bottom: 60px;
}

.navbar {
  background-color: #333;
  overflow: hidden;
  font-size: 16px;
}

.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.active {
  background-color: #498ee2;
  color: white;
}

.navbar a:hover {
  background-color: #ddd;
  color: black;
}

.search-container {
  padding: 20px;
  text-align: center;
}

.search-container input[type="text"], .search-container button {
  padding: 10px;
  margin-top: 10px;
  font-size: 16px;
}

.search-container button {
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
}

.search-container button:hover {
  background-color: #45a049;
}

.scroll-box {
  overflow-y: auto;
  border: 1px solid #ccc;
  padding: 10px;
  background-color: #fff;
  height: 400px;
  margin-top: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* 添加固定表格布局 */
}

th, td {
  padding: 8px;
  text-align: center; /* 更改为中心对齐 */
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #4CAF50;
  color: white;
}

.container {
  width: 90%;
  margin: 20px auto;
  padding: 20px;
  background-color: white;
  border: 1px solid #ccc;
}

#resultsData {
  overflow-y: auto;
  max-height: 600px;
  border: 1px solid #ccc;
  padding: 10px;
  background-color: #f9f9f9;
  margin-top: 20px;
}

.blast-type-container {
  border: 2px solid #ced1d5; /* 边框颜色与背景色一致，使边框隐形 */
  padding: 10px; /* 添加一些内边距，确保文本不会紧贴边框 */
  margin: 20px 0; /* 增加外边距，使布局更加美观 */
  background-color: #f9f9f9; /* 设置一个淡灰色背景 */
  border-radius: 5px; /* 轻微圆角 */
}

.blast-type-selection label {
  display: block;
  margin-top: 10px;
  font-size: 16px;
}

.blast-type-selection input[type="radio"] {
  margin-right: 8px;
}


footer {
  background-color: #333;
  color: white;
  padding: 10px;
  text-align: center;
}

#fileInput {
  display: none;
}
