/*Header*/
body{
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    background-color: #f5f5f5;
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    border-bottom: 1px solid #D5D9D9;
    background-color: white;
    padding: 0 20px;
}

.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;
}

.logo img{
    margin-left: 5px;
}

.header ol{
    list-style: none; 
    display: flex;
    height: inherit;
}

.header ol li{
    height: inherit;
}

.link:hover {
    color: white;
    background-color: #8d008d;
    border: 0.5px solid #D5D9D9;
}

ol{
    margin: 0;
    padding: 0;
}

/*menu*/
.menu{
    height: inherit;
}

.menu li{
    display: inline;
}

/*Footer*/
.footer{
  display: block;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-top: 1px solid #D5D9D9;
  margin-top: 40px;
  padding: 1em;
  background-color: white;
}

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{
    width: 80%;
    margin: 30px auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.tablita{
    width: 90%;
    margin: 30px auto;
    overflow-x: auto;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

/*Tablaaaaaa Estilos*/
.tabla{
    width: 100%;
    border-collapse: collapse;
    font-family: 'Quicksand', sans-serif;
}

table tr th{
    border: 1px solid #D5D9D9;
    padding: 12px;
    color: white;
    background-color: #8d008d;
}

/* Para el estilo de las nuevas celdas */
td {
    border: 1px solid #D5D9D9;
    padding: 12px;
    text-align: center;
    background-color: white;
}

.caja{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.caja label{
    display: block;
    margin-bottom: 5px;
    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
    color: #8d008d;
    text-align: left;
}

.caja input{
    width: 100%;
    height: 40px;
    padding: 5px 10px;
    border: 1px solid #D5D9D9;
    border-radius: 5px;
    font-family: 'Quicksand', sans-serif;
    box-sizing: border-box;
}

.caja input:focus{
    outline: none;
    border: 1px solid #8d008d;
    box-shadow: 0px 0px 5px rgba(118, 0, 141, 0.3);
}

#editar{
    width: 150px;
    height: 40px;
    font-family: 'Quicksand', sans-serif;
    color: white;
    background-color: #8d006e;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#editar:hover{
    background-color: #b11b90;
}

#borrar{
    width: 150px;
    height: 40px;
    font-family: 'Quicksand', sans-serif;
    color: rgb(255, 255, 255);
    background-color: #058d00;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#borrar:hover{
    background-color: #11b60c;
}

.submit{
    width: 150px;
    height: 40px;
    font-family: 'Quicksand', sans-serif;
    color: rgb(255, 255, 255);
    background-color: #001a8d;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.submit:hover{
    background-color: #0e26b1;
}