.di-box {
  margin: 16px 0;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}

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

.di-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.di-carrier {
  font-size: 13px;
  color: #64748b;
}

.di-date {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.di-countdown {
  margin-top: 8px;
  font-size: 14px;
  color: #b45309;
}

.di-debug {
  margin-top: 12px;
  padding: 12px;
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  background: #f8fafc;
  font-size: 12px;
  line-height: 1.4;
  color: #334155;
}

.di-zip-row {
  margin-top: 14px;
}

.di-label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.di-controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.di-input {
  min-width: 160px;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  color: #111827;
}

.di-btn {
  padding: 10px 14px;
  border: 0;
  border-radius: 10px;
  background: #111827;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.di-btn[disabled] {
  opacity: 0.6;
  cursor: wait;
}

.di-msg {
  margin-top: 8px;
  font-size: 13px;
  color: #b91c1c;
  word-break: break-word;
}

@media (max-width: 640px) {
  .di-controls {
    flex-direction: column;
  }

  .di-input,
  .di-btn {
    width: 100%;
  }
}