body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #e9edf2;
  color: #111;
}

.tracker-wrap {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 24px;
  box-sizing: border-box;
}

.tracker-card {
  width: 100%;
  max-width: 430px;
  min-height: calc(100vh - 48px);
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  box-sizing: border-box;
}

.logo-wrap {
  text-align: left;
  margin-bottom: 24px;
}

.tracker-logo {
  width: 100%;
  max-width: 110px;
  margin: 0 auto;
}

h1 {
  margin: 0;
  font-size: 34px;
}

.subtitle {
  margin-top: 5px;
  color: #666;
  font-weight: 700;
  text-align: left;
}

.status,
.due-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  gap: 10px;
  height: 36px;
  padding: 0 20px;
  border-radius: 999px;
  box-sizing: border-box;
}

.status.received {
  background: #fff3d8;
}

.status.ready {
  background: #dff0ff;
}

.status.delivered {
  background: #e3f7e8;
}

.row {
  border-top: 1px solid #eee;
  padding: 14px 0;
}

.label {
  color: #777;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.value {
  margin-top: 4px;
  font-size: 20px;
  font-weight: 800;
}

.loading,
.error {
  margin-top: 24px;
  font-weight: 700;
}

.footer {
  margin-top: 28px;
  font-size: 23px;
  font-weight: 800;
  text-align: center;
}

.hello {
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 28px;
}

.intro {
  margin-top: 0;
  margin-bottom: 18px;
  color: #666;
  font-weight: 600;
  line-height: 1.5;
}

.status-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}

.status-label {
  font-size: 14px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.status.received::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #3bb54a;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* NORMAL */

.due-normal {
  background: #f1f1f1;
  color: #222;
}

/* TOMORROW */

.due-tomorrow {
  background: #fff3d8;
  color: #8a6200;
}

/* TODAY */

.due-today {
  background: #ffe8cf;
  color: #b85a00;
}

/* READY */

.due-ready {
  background: #dff0ff;
  color: #0067b8;
}

/* COMPLETED */

.due-completed {
  background: #e3f7e8;
  color: #15803d;
}

/* OVERDUE */

.due-overdue {
  background: #ffe0e0;
  color: #c40000;
}

.top-pills {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.repair-hero {
  margin-bottom: 34px;
}

.repair-type {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.8px;
}

.repair-number {
  margin-top: 6px;
  color: #7b7b7b;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.3px;
}

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

.info-box {
  background: #f6f7f9;
  border-radius: 20px;
  padding: 18px;
}

.info-box.full {
  grid-column: 1 / -1;
}

.grid-value {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.secondary-card {
  margin-top: 34px;
  background: #f8f9fb;
  border-radius: 24px;
  padding: 18px;
  display: block;
}

.helpful-info {
  display: grid;
  gap: 12px;
}

.help-box {
  padding: 14px 0;
  border-bottom: 1px solid #e7eaf0;
}

.help-box:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.help-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: #666;
  letter-spacing: 0.5px;
}

.help-text {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.support-button {
  width: calc(100% - 40px);
  margin: 34px auto 0;
  display: block;
  margin-top: 34px;
  background: #111;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 18px;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  transition: 0.2s ease;
}

.support-button:hover {
  opacity: 0.92;
}