.shozi-ddl {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 16px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.shozi-ddl-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.shozi-ddl-title {
  font-weight: 900;
  font-size: 22px;
  text-align: center;
  margin-bottom: 14px;
}
.shozi-ddl-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.shozi-ddl-row input {
  flex: 1 1 420px;
  height: 44px;
  border-radius: 10px;
  border: 2px solid #e5e7eb;
  padding: 0 12px;
  font-size: 15px;
}
.shozi-ddl-row button {
  height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 800;
  background: #9e0000;
  color: #fff;
}
.shozi-ddl-row button#shozi-ddl-paste {
  background: #eef2f7;
  color: #111827;
}
.shozi-ddl-loader {
  margin-top: 14px;
  text-align: center;
}
.shozi-ddl-spinner {
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 5px solid #eee;
  border-top-color: #9e0000;
  margin: 0 auto 10px;
  animation: shoziSpin 1s linear infinite;
}
@keyframes shoziSpin { to { transform: rotate(360deg); } }
.shozi-ddl-muted { color: #6b7280; font-weight: 700; }

.shozi-ddl-error {
  margin-top: 12px;
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #7f1d1d;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 800;
}
.shozi-ddl-result {
  margin-top: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  background: #fafafa;
}
.shozi-ddl-meta {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}
.shozi-ddl-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.shozi-ddl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 900;
  background: #9e0000;
  color: #fff;
}
.shozi-ddl-btn.secondary {
  background: #0ea5b7;
}
.shozi-ddl-note {
  margin-top: 10px;
  color: #374151;
  font-weight: 700;
}
