body{
    color: white;
    font-family:Arial, Helvetica, sans-serif ;
    background-color: rgb(36, 61, 84);
    text-align: center;
}
a{

    color: white;
    text-decoration: none;

}
a:hover{

    text-decoration: underline;
}

#compras{
    margin: 10px;
    background-color: rgba(255, 255, 255, 0.215);
    width: 80%;
    min-width: 400px;
    box-shadow: 0px 0px 5px white;
    height: 420px;
    border-radius: 5px;
    border: 1px solid white;
}
    
#ListaCompras{
    width: 100%;
    height: 300px;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}

#extractos{
    margin: 10px;
    background-color: rgba(255, 255, 255, 0.215);
    width: 80%;
    min-width: 400px;
    box-shadow: 0px 0px 5px white;
    height: 420px;
    border-radius: 5px;
    border: 1px solid white;
}
    
#ListaExtractos{
    width: 100%;
    height: 300px;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}

#item{
    background-color: #1C274C;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    margin-top: -1px;
    border: 1px white solid;
    align-items: center;
}
#item:hover{
    background-color: rgb(62, 106, 146);
}

#logo{
    height: 40px;
    width: 40px;
    margin: 5px;

}
#nombre{

    margin-left: 15px;
}

form button{

height: 25px;
width: 80%;
margin-left: 10%;
background-color: #1C274C;
color: white;
box-shadow: none;
border-radius: 15px 0px 15px 0px;
border: none;
transition: 1s;
}

form button:hover{

border-radius: 0px 15px 0px 15px;


}

select{

border: none;
border-bottom: 1px solid blue;
background-color:rgb(36, 61, 84) ;
color: white;
box-shadow: none;
width: 200px;
height: 25px;
}