body {
    height: 100vh;
}
#email{
    padding:  10px 0 10px 10px;
}

ol {
    list-style-type: none;
    padding: 0;
}
ol li {
    background: white;
    padding: 8px 16px;
    border-bottom: 1px solid gray;
}


ol li.expense {
    border-left: 10px solid red;
}
ol li.income {
    border-left: 10px solid green;
}
ol li:hover button.danger {
    display: block;
}

button.danger {
    width: auto;
    float: right;
    display: none;
}

p {
    margin: 4px 0;
    width: 33%;
}
.cabecalho{
    display: flex;
    justify-content: start;
    align-items: center;
    padding-left: 0px;
    background-color: rgb(218, 254, 225);
    border-bottom: 1px solid gray;
    width: 100%;
}
.cabecalho p{

    width: 22%;
    text-align: start;
}
#print-button{
    background-color: #cccccc00;
    border: none;
    width: 70px;
}
.dataheader {
    background-color: #f0f0f06e;
    font-weight: bold;
    padding: 5px;
    margin: 10px 0;
    border: none;
}


/* Estilo para transações ocultas (datas antigas) */
#transactions li[style*="none"] {
    display: none;
}
.ordenador,#limpar{
    width: 100px;
}
.box{
    position: relative;
    left: 3%;
}
.button{
    width: 100px;
    font-size: 10px;
    border: none;
    background-color: rgb(104, 255, 129);
    color: #000;
    border-radius: 10px;
}
.button:hover{
    background-color: rgb(5, 139, 27);
    color: #fff;
}
.width{
    width: 25%;
}
.container{
    position: relative;
    top:10%
}
.container p {
    font-size: 20px;
    padding: 50px;
}
.salas{
    display: flex;
    justify-content: space-around;
}
.salas button{
    border: none;
    width: 20%;
    border-radius: 10px;
}
.salas button:hover{
    background-color: green;
    color: white;
    transition: 0.5s ease-in-out;
}