    .tables{
        background-color: #990000;
    }
    .tables th{
        color: white;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }
    .tables td {
            /* Agrega aquí cualquier otro estilo que desees aplicar a las celdas */
			font-size: 10px;
			text-align: center;
            color: white;
        }
    .tables tr:hover {
            background-color: #D8635C;
            /* Cambia el color de fondo al pasar el cursor */
        }
