@media screen and (min-width: 800px) {

.containertablas{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
/* #tab2{
border:#CACFD2 20px solid;
  padding: 5px;
  color: #fff;
  width: 420px;
  margin: 10px;
  background:#1C2833;
}*/

}

.styled-table {
  border-collapse: collapse;
  margin: 25px auto; /* Margen superior e inferior de 25px, y margen lateral automático para centrar */
  font-size: 1em;
  font-family: sans-serif;
  min-width: 450px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
 
}

/* Estilos de las celdas */
.styled-table th,
.styled-table td {
  text-align: center;
  padding: 8px;
}

/* Estilos de las celdas de encabezado */
.styled-table th {
  background-color: #6d1010;
  color: #f5f3f3;
}

/* Estilos de filas impares */
.styled-table tr:nth-child(odd) {
  background-color: #f5f4ef;
  color: #000;
}



/* Estilos de filas pares */
.styled-table tr:nth-child(even) {
  background-color: #ddcb83;
  color: #000;
}

/* Estilos al pasar el cursor sobre filas */
.styled-table tr:hover {
  background-color: #91cb8d;
}

/* Estilos al pasar el cursor sobre filas */
.styled-table th:hover {
  background-color: #91cb8d;
  cursor : pointer
}