/*Header*/
body{
    margin: 0;
    padding: 0;
}

/* Establece que toda la página use altura completa */
html, body {
    height: 100%;
    margin: 0;
}

/* Wrapper general con flex column */
.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* El contenido principal crece para llenar el espacio */
.content {
    flex: 1;
}

/* Estilo del footer */
.footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #1a1a1a;
}

.footer a {
    color: white;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #00acee;
}

.header{
    display: flex;
    justify-content: space-between;
    height: 70px;
    border-bottom: 1px solid #D5D9D9;
    margin-top: 0;
    padding-top: 0;
}
.header a{
    font-size: 1em;
    font-family: 'Quicksand', sans-serif;
    color: #00438D;
    padding: 0 10px; 
    height: inherit; 
    display: flex;
    align-items: center;
}
.logo{
    display: flex;
    margin-block-start: 3px;
    margin-block-end: 3px;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}
.logo img{
    margin: 0px 0px 0px 5px ;
    display: flex;
    padding: 0;
    border: 0;
}
.header ol{
    list-style: none; 
    display: flex; /*Sirve para poner la lista de elementos de la lista horizontalmente*/ 
    height: inherit;
}
.header ol li{
    height: inherit;
}
.link:hover {
    color: white;
    background-color: #00438D;
    border: 0.5px solid #D5D9D9;
}
ol{
    margin: 0;
    padding: 0;
}
/*menu*/
.menu{
    height: inherit;
}
.menu li{
    display: inline; /*para poner la lista en horizontal*/
}
/*Footer*/
.footer{
  display: block;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-top: 1px solid #D5D9D9;
  margin-top: 0;
  padding: 1em;
}
a:link{
text-decoration: none;
}
.social{
  width: 32px;
  height: 32px;
  display: inline-block;
}
.footer-fb{
background-image: url('../images/fb.ico');
}
.footer-twitter{
background-image: url('../images/twitter.ico');
}
.footer-instagram{
background-image: url('../images/instagram.ico');
}
.footer-linkedin{
    background-image: url('../images/linkedin.ico');
}
/*End Footer*/
form{
    text-align: center;
}
.tablita{
    display: inline-block;    
}
/*Tablaaaaaa Estilos*/
.tabla{
border-collapse: collapse; /*Esta propiedad hace que parezca mas una tabla*/
font-family: 'Quicksand', sans-serif;
}
table tr th{
    border: 1px solid #D5D9D9;
    width: 100px;
    height: 25px;
    color: white;
    background-color: #00438D;
}
/* Para el estilo de las nuevas celdas */
td {
    border: 1px solid #D5D9D9;
    width: 100px;
    height: 25px;
}
.caja{
    display: block;
}
.caja label{
    font-family: 'Quicksand', sans-serif;
}
.caja input{
    width: 8em;
    height: 2em;
    text-align: center;
    font-family: 'Quicksand', sans-serif;  
}
.submit{
    width: 8em;
    height: 2em;
    font-family: 'Quicksand', sans-serif;
    color: white;
    background-color: #00438D;
    border: 2px solid white;
}

/* Establece que toda la página use altura completa */
html, body {
    height: 100%;
    margin: 0;
}

/* Wrapper general con flex column */
.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* El contenido principal crece para llenar el espacio */
.content {
    flex: 1;
}

/* Estilo del footer */
.footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #1a1a1a;
}

.footer a {
    color: white;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #00acee;
}
