table.blueTable {
    border: 1px solid #1C6EA4;
    background-color: #EEEEEE;
    width: 80%;
    text-align: center;
    border-collapse: collapse;
    margin: auto;
}
table.blueTable td, table.blueTable th {
    border: 1px solid #AAAAAA;
    padding: 8px 0;
}
table.blueTable tbody td {
    font-size: 13px;
    font-weight: bold;
}
table.blueTable tr:nth-child(even) {
    background: #D0E4F5;
}
table.blueTable thead {
    background: #1C6EA4;
    background: -moz-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
    background: -webkit-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
    background: linear-gradient(to bottom, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
    border-bottom: 2px solid #444444;
}
table.blueTable thead th {
    font-size: 15px;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
    border-left: 2px solid #D0E4F5;
}
table.blueTable thead th:first-child {
    border-left: none;
}

table.blueTable tfoot td {
    font-size: 14px;
}
table.blueTable tfoot .links {
    text-align: right;
}
table.blueTable tfoot .links a{
    display: inline-block;
    background: #1C6EA4;
    color: #FFFFFF;
    padding: 2px 8px;
    border-radius: 5px;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
}

.video {
    flex: 1;
    padding: 10px;
}

h4 {
    color: #0074D9; /* Azul brillante, puedes elegir otro color */
    font-size: 1.2em; /* Tamaño de fuente aumentado */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Estilo cuando el cursor pasa por encima del primer iframe */
iframe:nth-of-type(1):hover + h4 {
    outline: 2px solid green; /* Contorno verde */
}

/* Estilo cuando el cursor pasa por encima del segundo iframe */
iframe:nth-of-type(2):hover + h4 {
    outline: 2px solid blue; /* Contorno azul */
}
