/* Probe Web — minimalist styles on top of Tailwind CDN */

.history-item {
  padding: 0.55rem 0.7rem;
  border: 1px solid #27272a;
  border-radius: 8px;
  background: #18181b;
  display: flex;
  flex-direction: column;
  gap: 2px;
  cursor: pointer;
  transition: border 0.15s;
}

.history-item:hover {
  border-color: #71717a;
}

.history-item.is-disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.history-item.is-disabled:hover {
  border-color: #27272a;
}

.history-item .symbol {
  font-weight: 600;
  color: #f4f4f5;
}

.history-item .meta {
  font-size: 0.72rem;
  color: #a1a1aa;
}

.history-item .meta.hint {
  color: #38bdf8;
}

.status-badge {
  font-size: 0.65rem;
  padding: 1px 6px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-badge.queued    { background: #1e293b; color: #93c5fd; }
.status-badge.running   { background: #064e3b; color: #6ee7b7; }
.status-badge.succeeded { background: #14532d; color: #bbf7d0; }
.status-badge.failed    { background: #7f1d1d; color: #fecaca; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 0.78rem;
  background: #27272a;
  color: #fafafa;
  border-radius: 6px;
  border: 1px solid #3f3f46;
  text-decoration: none;
}

.btn:hover {
  background: #3f3f46;
}
