/* Shared base stylesheet for individual card standalone viewing */
:root {
  --accent: #2dd4ff;
  --accent-dark: #1aa3cc;
  --text: #e6faff;
  --text-secondary: rgba(230, 250, 255, 0.7);
  --text-tertiary: rgba(230, 250, 255, 0.4);
  --bg-primary: #0a0f14;
  --bg-secondary: #141e28;
  --bg-card: #141e28;
  --border-light: rgba(255, 255, 255, 0.08);
  --success: #39ff14;
  --error: #ff4d4d;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 24px;
  background: var(--bg-primary);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  font-size: 15px;
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: 14px;
  box-sizing: border-box;
}

input[type="text"],
input[type="number"],
input[type="email"],
select,
textarea {
  background: rgba(20, 30, 40, 0.8);
  border: 1px solid rgba(45, 212, 255, 0.25);
  color: var(--text);
  border-radius: 8px;
  padding: 10px 14px;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(45, 212, 255, 0.2);
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}
