/* VlaRod - main.css */
:root {
  --primary: #3a0ca3;
  --accent: #4cc9f0;
}
body {
  font-family: system-ui, -apple-system, sans-serif;
}
details summary {
  cursor: pointer;
  list-style: none;
}
details summary::-webkit-details-marker {
  display: none;
}
details[open] summary::after {
  content: " ▲";
}
details summary::after {
  content: " ▼";
  font-size: 0.75em;
}
table {
  border-collapse: collapse;
}
.alert {
  border-left: 4px solid var(--accent);
  background: #fffbf0;
  padding: 1rem;
  border-radius: 0.5rem;
}
