.wz-card {
  border-radius: 0.35em;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  border: 1px solid #e2e8f0;
  padding: 1em 1.25em;
  margin-bottom: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.wz-thumb {
  width: 220px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #eee;
}

/* Grijstint bij opgezegd */
.wz-status-opgezegd .wz-thumb {
  filter: grayscale(100%);
  opacity: 0.7;
}

.wz-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wz-card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 20px;
  font-weight: 600;
}

.status-tag {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 2px 8px;
  font-size: 12px;
  border-radius: 4px;
  font-weight: 500;
  vertical-align: middle;
}

/* Standaard kleur */
.status-tag {
  background: #f3f4f6;  /* lichtgrijs */
  color: #374151;       /* donkergrijs */
}

/* Statuskleuren */
.wz-status-bouwen .status-tag {
  background: #fff4e5;
  color: #b26b00;
}

.wz-status-lanceren .status-tag {
  background: #f3e5f5;
  color: #6a1b9a;
}

.wz-status-opgezegd .status-tag {
  background: #e0e0e0;
  color: #616161;
}

.wz-status-pro .status-tag {
  background: #e8f5e9; /* lichtgroen */
  color: #2e7d32;       /* donkergroen */
}

.wz-status-gratis .status-tag {
  background: #eef2ff; /* lichtblauw */
  color: #4f46e5;       /* blauw */
}

.wz-card-sub {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 12px;
}

.wz-card-button {
  display: inline-block;
  background: #1f2937;
  color: white;
  padding: 6px 12px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 13px;
  margin-right: 8px;
}

.wz-card-button:hover {
  background: #111827;
}

.wz-link-button {
  color: #1F2937;
  text-decoration: underline;
  font-weight: 500;
  margin-left: 16px;
  font-size: 15px;
}

.wz-status-tag {
  display: inline-block;
  font-size: 14px;
  padding: 2px 8px;
  border-radius: 8px;
  margin-left: 8px;
  vertical-align: middle;
  background-color: #e8f5e9;
  color: #2e7d32;
  font-weight: 500;
}

.wz-status-tag.error {
  background-color: #ffebee;
  color: #c62828;
}

/* Spinner naast tag */
.wz-loading-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 6px;
  border: 2px solid #ccc;
  border-top: 2px solid #0073aa;
  border-radius: 50%;
  animation: spin 2s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.dns-instructies {
  background: #f9fafb;
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 12px;
  font-family: monospace;
  font-size: 14px;
  color: #111827;
  white-space: pre-wrap;
  line-height: 1.6;
}

.wz-add-domain {
  margin-top: 20px;
  text-align: center;
}

.wz-add-domain .wz-card-button {
  font-size: 15px;
  padding: 10px 18px;
}

#srfm-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Welkomst alert styling - Shoelace alert lookalike */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 2.25rem;
  border-radius: 0.5rem;
  border: solid 1px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.5em;
  line-height: 1.5;
  word-break: break-word;
  max-width: 1440px;
  margin: 0 auto 3rem;
}

.alert--primary {
  border-color: #bfdbfe;
  background-color: #eff6ff;
  color: #1e3a8a;
}

.alert--success {
  border-color: #86efac;
  background-color: #d1fae5;
  color: #065f46;
}

.alert--success .alert__icon {
  font-size: 1.75rem;
}

/* Confetti container */
#wz-confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.alert__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  font-size: 1.5rem;
  line-height: 1;
  margin-top: 0.125rem;
}

.alert__icon svg {
  width: 1em;
  height: 1em;
  color: #2563eb;
  flex-shrink: 0;
}

.alert__text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.alert__title {
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.5;
  color: inherit;
  margin: 0;
}

.alert__message {
  font-size: 1.75rem;
  line-height: 1.5;
  font-weight: 500;
  color: inherit;
  opacity: 0.8;
  margin: 0;
}
