.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9ca3af;
  display: inline-block;
  flex-shrink: 0;
}

.status-dot.online {
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: pulse-green 2s infinite;
}

.status-dot.offline {
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1); }
}

.ticket-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
}

.ticket-row:hover {
  background: #f9fafb;
}

.ticket-id {
  font-family: ui-monospace, monospace;
  font-size: 0.8rem;
  color: #6b7280;
  min-width: 70px;
}

.ticket-title {
  flex: 1;
  margin: 0 1rem;
  font-size: 0.875rem;
  color: #111827;
}

.notion-link {
  font-size: 0.75rem;
  color: #2563eb;
  text-decoration: none;
  white-space: nowrap;
}

.notion-link:hover {
  text-decoration: underline;
}

.ci-pass { color: #16a34a; }
.ci-fail { color: #dc2626; }

.restart-btn {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #6b7280;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.restart-btn:hover {
  background: #f3f4f6;
  color: #111827;
  border-color: #d1d5db;
}

.restart-btn.spinning {
  animation: spin 1s linear infinite;
  color: #2563eb;
  border-color: #93c5fd;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
