.amt-track {
  color: #232323;
  padding: 12px 0 24px;
}

.amt-track__header h1 {
  margin-bottom: 8px;
}

.amt-track__header p {
  margin: 0 0 16px;
  color: #5b5b5b;
}

.amt-alert {
  border-radius: 10px;
  padding: 12px 14px;
  margin: 0 0 16px;
  border: 1px solid #e3e3e3;
}

.amt-alert--success {
  background: #ebfaef;
  border-color: #9dd8aa;
  color: #1f6b31;
}

.amt-alert--error {
  background: #fff2f2;
  border-color: #e9a6a6;
  color: #8b1f1f;
}

.amt-alert--info {
  background: #eff8ff;
  border-color: #b7d7ef;
  color: #1d5f8d;
}

.amt-top-actions {
  margin-bottom: 14px;
}

.amt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.amt-progress {
  margin-bottom: 14px;
}

.amt-progress__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.amt-progress__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.amt-progress__updated {
  color: #666;
  font-size: 14px;
}

.amt-progressbar {
  height: 10px;
  background: #ededed;
  border-radius: 999px;
  overflow: hidden;
  margin: 10px 0 14px;
}

.amt-progressbar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #c70909, #f04444);
  transition: width .3s ease;
}

.amt-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.amt-step {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #7a7a7a;
}

.amt-step__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d2d2d2;
  margin-top: 5px;
  flex: 0 0 auto;
}

.amt-step__label {
  display: inline-block;
  line-height: 1.35;
}

.amt-step--done {
  color: #333;
}

.amt-step--done .amt-step__dot {
  background: #2f9e44;
}

.amt-step--active {
  color: #111;
  font-weight: 700;
}

.amt-step--active .amt-step__dot {
  background: #c70909;
}

.amt-status-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  margin-left: 8px;
  white-space: nowrap;
}

.amt-status-badge--neutral {
  background: #f1f1f1;
  color: #525252;
}

.amt-status-badge--info {
  background: #e8f3ff;
  color: #1d5f8d;
}

.amt-status-badge--warning {
  background: #fff4e0;
  color: #9a5b00;
}

.amt-status-badge--success {
  background: #ebfaef;
  color: #1f6b31;
}

.amt-card {
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  background: #fff;
  padding: 16px;
  margin-bottom: 14px;
}

.amt-card h2 {
  margin: 0 0 12px;
}

.amt-card h3 {
  margin: 12px 0 8px;
  font-size: 20px;
}

.amt-field {
  margin-bottom: 12px;
}

.amt-field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.amt-field input,
.amt-field textarea {
  display: block;
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  min-height: 42px;
  padding: 10px 12px;
  font-size: 16px;
}

.amt-field textarea {
  min-height: 110px;
  resize: vertical;
}

.amt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.amt-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.amt-btn--primary {
  background: #c70909;
  color: #fff;
}

.amt-btn--ghost {
  background: #fff;
  color: #444;
  border-color: #d5d5d5;
}

.amt-btn--success {
  background: #2f9e44;
  color: #fff;
}

.amt-btn--danger {
  background: #c92a2a;
  color: #fff;
}

.amt-help {
  margin: 10px 0 0;
  color: #666;
  font-size: 14px;
}

.amt-sep {
  margin: 14px 0;
  border: 0;
  border-top: 1px solid #ececec;
}

.amt-inline-form {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 8px;
}

.amt-table {
  width: 100%;
  border-collapse: collapse;
}

.amt-table th,
.amt-table td {
  border-bottom: 1px solid #ececec;
  padding: 10px 6px;
  vertical-align: top;
}

.amt-table th {
  width: 35%;
  color: #555;
  font-weight: 700;
}

.amt-log-list {
  display: grid;
  gap: 10px;
}

.amt-log-item {
  border: 1px solid #ececec;
  border-radius: 10px;
  overflow: hidden;
}

.amt-log-item__head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: #f7f7f7;
  font-size: 14px;
}

.amt-log-item__head span {
  color: #666;
}

.amt-log-item__body {
  padding: 12px;
  line-height: 1.5;
  word-break: break-word;
}

.amt-log-item__file {
  margin: 10px 0 0;
}

.amt-log-item__file img {
  max-width: 120px;
  height: auto;
  border-radius: 8px;
  border: 1px solid #ddd;
}

@media (max-width: 992px) {
  .amt-grid {
    grid-template-columns: 1fr;
  }

  .amt-steps {
    grid-template-columns: 1fr;
  }

  .amt-status-badge {
    margin-left: 0;
    margin-top: 6px;
  }
}
