/* css/style.css */

body {
  font-family: Arial, sans-serif;
  padding: 20px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.refresh-button {
  padding: 5px 10px;
  cursor: pointer;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

thead {
  background-color: #f0f0f0;
}

th, td {
  padding: 10px;
  border: 1px solid #ccc;
  text-align: left;
}

/* 进度条样式 */
.progress-container {
  width: 100%;
  background: #ccc;
  margin: 10px 0;
  height: 20px;
  border-radius: 10px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: #4caf50;
  width: 0;
  transition: width 0.3s;
}

/* 弹窗样式 */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.modal-content {
  background: #fff;
  width: 500px;
  max-height: 80%;
  border-radius: 5px;
  padding: 20px;
  overflow-y: auto;
}

.modal-header h3 {
  margin: 0 0 10px 0;
}

.modal-body {
  text-align: center;
}

.progress-list {
  text-align: left;
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 10px;
}

.progress-item {
  font-size: 12px;
  margin-bottom: 5px;
}

.modal-footer {
  margin-top: 10px;
}
