:root {
  color-scheme: dark;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.card-glow {
  box-shadow: 0 20px 45px rgba(2, 8, 23, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.input-shell {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.9rem 1rem;
  color: white;
  outline: none;
  transition: all 180ms ease;
}

.input-shell:focus {
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.toggle-shell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.85rem 1rem;
  color: rgb(226 232 240);
}

.button-shell,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  transition: all 180ms ease;
}

.button-shell:hover,
.mini-button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.danger {
  border-color: rgba(251, 113, 133, 0.25);
  color: rgb(254 205 211);
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
