.Reporte {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #e53935, #8e24aa);
  color: white;
  min-height: 490px;
  min-width: 550px;

  width: 100%;
  height: 100%;

  border-radius: 20px;
   position: relative; /* clave para que el botón se quede dentro */
  overflow: hidden;  /* clave para que el botón se quede dentro */

}

.Reporte-container {
  padding: 20px;
}

.Reporte-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.Reporte-header label {
  font-weight: bold;
}

.Reporte-header input[type="date"] {
  padding: 5px;
  border-radius: 4px;
  border: none;
}

.Reporte-header button {
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  background-color: #ccc;
  cursor: pointer;
}

.Reporte-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  color: black;
  border-radius: 4px;
  overflow: hidden;
}

.Reporte-table th,
.Reporte-table td {
  padding: 10px;
  text-align: center;
  border: 1px solid #ccc;
}

.Reporte-table th {
  background-color: #eee;
}

.Reporte-total {
  margin-top: 10px;
  font-weight: bold;
  padding-left: 10px;
}

.tabla-con-scroll {
  max-height: 400px;
  /* Puedes ajustar esta altura */
  overflow-y: auto;
  border: 1px solid #ccc;
  /* Opcional: para que se vea el contorno */
}

/* Opcional: hace que el header quede fijo */
.tabla-con-scroll thead th {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 1;
}



.Reporte-total {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: #5f5f5f;
  padding: 5px 10px;
  border: 1px solid #ccc;
  font-weight: bold;

  border-bottom-left-radius:20px ;
  width:max-content;
  text-align: left;

}