body {
  font-family: "Segoe UI", sans-serif;
  background: #f7f9fb;
  color: #333;
}
.container {
  width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.token-section {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}
table th, table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}
.bottom-section {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.progress-wrapper {
  margin: 15px 0;
}

.progress-bar {
  width: 100%;
  height: 18px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: #4caf50;
  transition: width 0.3s ease;
}

.progress-text {
  text-align: right;
  font-size: 12px;
  margin-bottom: 3px;
  font-weight: bold;
}