body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #FFFFFF !important;
    color: #fff;
}
a {
  color: #337ab7; 
}

.navbar .nav-link {
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
}

.logo{
  height: 7rem;
}
.navbar {
    background-color: #333; 
}

.tabla_video {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
}

table {
    width: 100%;
    max-width: 50rem;
    margin-left: 1rem;
    text-align: left;
    border-collapse: collapse;
}

th, td {
    padding: 0.5em;
}

thead {
    font-size: 1.5rem;
}

tbody td {
    transition: all 0.2s linear;
    transition-delay: 0.3s, 0s;
    opacity: 0.6;
}

tbody tr:hover td {
    transition-delay: 0s, 0s;
    opacity: 1;
    font-size: 2rem;
}

td {
    transform-origin: center left;
    transition-property: transform;
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
}

tr:hover td {
    transform: scale(1.1);
}

.video {
    width: 100%;
    max-width: 560px; 
    height: auto;
    aspect-ratio: 16 / 9; 
    margin-right: 0.5rem;
    border-radius: 6px;
}



summary {
    list-style: none;
    display: block;
    cursor: pointer;
}

details {
    min-height: 400px; 
    display: block;
}

.site-footer {
    background-color: #222;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 50px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-section h3 {
    color: #f8f8f8;
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid #444;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links li {
    margin-bottom: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    color: #ccc;
    text-decoration: underline;
    transition: color 0.3s;
}


.social-links a:visited {
  color: #888;
}

.social-links a:hover {
    color: #fff;
}

.social-links img {
    width: 1.5rem; 
    height: 1.5rem;
    margin-right: 10px;
}

address {
    font-style: normal;
    line-height: 1.6;
}

address p {
    margin-bottom: 8px;
}

address a {
    color: #ccc;
    text-decoration: underline;
    transition: color 0.3s;
}

address a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #999;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: #000;
  color: #FFF;
  z-index: 9999;
  border: 2px solid #FFD700;
}

@media (max-width: 768px) {
    .tabla_video {
        flex-direction: column; 
    }
    .video {
        max-width: 100%; 
        margin: 0 auto; 
    }
    table {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }
    .footer-container {
        flex-direction: column;
    }
    .footer-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .tabla_video {
        flex-direction: column;
    }
    .video {
        max-width: 100%;
        margin: 0 auto;
    }
    table {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }
    thead {
        font-size: 1.2rem;
    }
    tbody tr:hover td {
        font-size: 1.5rem;
    }
}