/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.5;
}

/* Flash messages */
.flash-alert {
  background: #fee;
  border: 1px solid #fcc;
  padding: 1rem;
  margin: 1rem 0;
}

.flash-notice {
  background: #efe;
  border: 1px solid #cfc;
  padding: 1rem;
  margin: 1rem 0;
}

.breadcrumb-item > a {
  color: unset !important;
}
