.update-container {
  max-width: 960px;
  margin: 30px auto;
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.update-container h1 {
  color: #004a99;
  margin-bottom: 20px;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.update-container label {
  display: block;
  margin-top: 12px;
  font-weight: bold;
  color: #004a99;
}

.update-container input[type="text"],
.update-container input[type="file"] {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 5px;
}

.warning-text {
  color: #cc0000;
  font-size: 14px;
  margin: 5px 0 10px;
}

.btn-row {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.btn-row button {
  flex: 1 1 auto;
  min-width: 160px;
}

.btn-fetch {
  background-color: #004a99;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 4px;
  margin-right: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-fetch:hover {
  background-color: #003366;
}

.btn-reset {
  background-color: #004a99;
  color: #fff;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  display: inline-block;
}

.btn-reset:hover {
  background-color: #003366;
  transform: translateY(-2px);
}

.status-message {
  margin-top: 15px;
  font-size: 14px;
  color: #004a99;
}

#updateTable td:last-child {
  text-align: center;
}
.progress-container {
  width: 100%;
  background-color: #eee;
  border-radius: 4px;
  margin-top: 15px;
  height: 20px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background-color: #004a99;
  transition: width 0.3s ease;
  color: white;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.update-container p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
}