body {
    font-family: Liberation;
    font-size: 12pt;
}
div.transactions { width: max-content }
table.transactions { border-collapse: collapse }
table.transactions td { border: 1px solid }
td.time { text-align: right }
td.id { text-align: right }
td.balance_amount, td.payment_amount { text-align: right }
td.balance_amount, th.balance { background-color: #e0ffff }
td.error { color: red }
td.success { color: green }
p.project { text-align: right }

button#more { 
    width: 100%;
    border: none;
    padding: 4px;
    background-color: #c0c0c0;
    color: black
}

.menu {
    background-color: black;
    color: white;
}
/* Style The Dropdown Button */
.dropbtn {
    background-color: black;
    color: white;
    padding: 6pt;
    font-size: 12pt;
    border: 0pt;
    cursor: pointer;
    font-family: Liberation;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: black;
    color: white;
    min-width: 160px;
    box-shadow: 0px 6pt 12pt 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: white;
    padding: 6pt;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #f0f0f0;
    color: black;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    color: white;
    background-color: black;
}
