/* Contenedor principal */
.container {
  text-align: center;
  flex: 1;
  overflow-y: auto;
  width: 90%;
  padding: 20px;
}

.container h2 {
  margin-top: 10px;
  margin-bottom: 30px;
}

/* Reportes */
.report-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.report-item {
  border: none;
  display: flex;
  align-items: center;
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.report-img {
  width: 40%;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 20px;
}

.status {
  font-size: 2.4vh;
  font-weight: bold;
  display: flex;
  flex-direction: column;
}
.status .status {
  font-weight: 600;
  font-size: 1.5vh;
  color: #474747;
  margin-top: 20px;
}
.status .descripcion {
  font-weight: 500;
  font-size: 1.7vh;
  margin-top: 20px;
}
a {
  text-decoration: none;
  color: black;
}

.reporteIndividual {
  display: flex;
}
