/* Base styling */
body {
  background-color: #111;
  color: #eee;
  font-family: 'Courier New', monospace;
  margin: 0;
  padding: 0;
}

/* Homepage (before police-report) */
main.center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

/* Homepage link styling */
main.center a {
  display: block;
  margin: 1rem;
  font-size: 2rem;
  color: #ccc;
  text-decoration: none;
}
main.center a:hover {
  color: #fff;
}

/* Reports page container */
main.reports {
  max-width: 80vw;
  margin: 2rem auto;
  padding: 0 2rem;
  text-align: left;
}

/* Reports list */
.reports-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Each report item as two-column layout */
.report-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2rem;
}

/* Title styling */
.report-item h3 {
  font-size: 1.5rem;
  margin: 0;
}

/* Description styling */
.report-item p {
  font-size: 1rem;
  text-indent: 1em;
  margin: 1.0rem 0 1rem 0;
}

/* Evidences column */
.item-evidences {
  font-style: italic;
  padding-left: 2rem;
  align-self: start;
}

/* Evidence links */
.item-evidences a {
  margin-right: 1rem;
  font-size: 1rem;
  color: #ccc;
  text-decoration: none;
}
.item-evidences a:hover {
  color: #fff;
}
/* constrain embedded videos */
.embedded-video {
  width: 100%;        /* fill its container */
  max-width: 600px;   /* but no wider than 400px */
  height: auto;       /* keep the correct aspect ratio */
  aspect-ratio: 16 / 9;
  display: block;
  margin: 3rem 0;
}
/* Push the video down a little in the evidences block */
.item-evidences iframe,
.embedded-video {
  display: block;       /* ensure it sits on its own line */
  margin-top: 0.75rem;  /* adjust this to taste */
}
.evidence-image {
  display: block;
  width: 200px;       /* new fixed width */
  height: auto;       /* auto-scale height to preserve aspect ratio */
  margin: 3rem 0;
  border: 1px solid #444;
}


