.report-form {
h1 {
  text-align: center;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 40rem;
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: white;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

label.multiple-files::after {
  content: " Use <ctrl>-click in file browser to select multiple files.";
  color: black;
  font-size: 0.75em;
  font-style: italic;
  opacity: 0.6;
  margin-left: 0.25em;
}

.form-input {
  padding: 0.5rem;
  border: 1px solid #888;
  border-radius: 4px;
  font-size: 1rem;
}

.form-input:focus {
  border-color: #005fcc;
  outline: none;
  box-shadow: 0 0 5px #005fccaa;
}

.form-submit {
  background-color: #005fcc;
  color: white;
  font-weight: bold;
  border: none;
  padding: 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-submit:hover {
  background-color: #004bb5;
}
.gender-radio-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

.gender-radio-group label {
  font-weight: normal;
}

.media-item {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 10px;
}

.show-link {
  display: flex;              /* flex container */
  justify-content: center;    /* center horizontally */
  margin: 10px;
}

.show-link:hover {
  color: lightblue;
  border-radius: 10%;
}

}

.reports-list {
  width: 100%;
  max-width: 600px;
  padding: 10px 40px 10px 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  border-radius: 8px;
  background-color: white;
}

.reports-list h1 {
  text-align: center;
  font-size: 1.5rem;
}

.reports-list table {
  border: 10px solid white;
  border-collapse: collapse;
  background: #f0f0f0;
  border-radius: 0.2rem;
/*
  background: #323232;
  color: white;
*/
}

.reports-list th, td {
  padding: 0.5rem;
  line-height: 1rem;
}

/* zebra pattern */
.reports-list tr:nth-of-type(2n) {
  background: hsl(0 0% 0% / 0.2);
}

.reports-list .reports-preamble {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers items horizontally */
  align-items: center; /* Centers items horizontally */
}

.reports-list .new-report-button {
  display: inline-block;
  text-decoration: none; /* Removes the underline */
  padding: 5px 10px 0px 10px;
  border: 1px solid black;
  border-radius: 4px;
  cursor: pointer;
  color: black;
  height: 2rem;
  background-color: lightgreen;
}
.reports-list .new-report-button:hover {
  background-color: #b0ffb0
}

.report_show {

.report-container {
  max-width: 900px;
  min-width: 400px;
  margin: 2rem auto;
  padding: 1rem;
  font-family: Arial, sans-serif;
  color: #333;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.report-title {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: bold;
}

.report-item {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.report-description {
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.report-images {
  display: flex;
  flex-wrap: wrap;
  max-width: 600px;
  gap: 1rem;
  justify-content: center;
}

.image-wrapper {
/* flex: 1 1 300px;
  max-width: 400px; */

  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
}

.image-wrapper {
  max-width: 90%;
  height: auto;
}

nav {
  display: flex;
  justify-content: space-between;
}

nav .edit-link{
}

.edit-link:hover {
  color: lightblue;
  border-radius: 10%;
}

nav .destroy-button {
  color: black;
  background: #FF7070;
  height: 2rem;
  border-radius: 5%;
  font-weight: bold;
}

}
