body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f9f9f9;
}

header {
    background-color: #108aa8;
    color: white;
    padding: 20px;
    text-align: center;
}

nav {
    background-color: #1c687a;
    text-align: center;
    padding: 10px;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    background-color: #0d5a6b; /* Fondo del enlace al hacer hover */
    color: #e6e21b; /* Texto del enlace al hacer hover */
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contenedor {
    padding: 20px;
    max-width: 900px;
    margin: auto;
}

img.destacada {
    width: 100%;
    height: auto;
    border-radius: 8px;
}



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

th {
    background-color: #eee;
}

.video-container {
    margin: 20px 0;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

footer {
    background-color: #1c687a;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

.noticia img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
}
.fecha {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 10px;
}