.account{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: 850px;
    margin: auto;
    border-left: 1px solid #c3c3c3;
    border-right: 1px solid #c3c3c3;
    padding: 0px 20px;
    height: calc(100vh - 70px);
}

.account .top-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

.account .top-info .balance{
    background-color: orange;
    border: 1px solid #b4b4b4;
    border-radius: 10px;
    padding: 10px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: min-content;
}

.account .top-info .balance .balance-title{
    color: #6b6b6b;
    font-size: 1.2em;
}

.account .top-info .balance .amount{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.account .top-info .balance .amount .currency{
    margin-right: 5px;
}
.account .top-info .balance .amount .currency,
.account .top-info .balance .amount .balance-amount{
    color: White;
    font-weight: bolder;
    font-size: 2.5em;
    text-shadow: 
        -1px -1px 0 #777,  
        1px -1px 0 #777,
        -1px  1px 0 #777,
        1px  1px 0 #777;
}

.account .transactions{
    width: 100%;
    overflow-y: auto;
}
.account .transactions .date{
    white-space: nowrap;
}
.account .transactions .description{
    width: 100%;
}
.account .transactions .amount{
    text-align: end;
}

.account .transactions thead{
    position: sticky;
    top: 0px;
}