body {
    font-family: Helvetica;
    color: #444;
    background-color: #eee;
    /* min-width: 640px; */
    font-size: smaller;
    background-image: url('/flowers.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

h1,
h2 {
    font-weight: normal;
}

#wrapper {
    width: 95%;
    max-width: 960px;
    /* min-width: 660px; */
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 5px 5px 35px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    padding: 0 0 20px;
    overflow: hidden;
    border: 1px solid darkgrey;
    background-color: #eee;
}

#page-banner {
    background: #ddd;
    padding: 10px 0;
}

#page-banner h1,
#page-banner p {
    width: 100%;
    font-weight: 700;
    text-align: center;
    margin: 20px 0;
}

#page-banner input {
    width: 90%;
    max-width: 300px;
    margin: 20px auto;
    display: block;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    /* font-size: 16px; */
    color: #444;
}

.enableEthereumButton {
    display: flex;
    justify-content: center;
    background-color: #c49bc2;
    border-color: #c49bc2;
    padding: 5px;
    color: white;
    margin: 50px auto;
    font-weight: 100;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
    border: 1px solid #c49bc2;
    border-radius: 4px;
    box-sizing: content-box;
    width: 130px;
    cursor: pointer;
}

.balance {
    background-color: #84adce;
    padding: 20px;
    border-radius: 10px;
    color: white;
    width: 30%;
    text-align: center;
    margin: 30px auto;
    font-weight: 500;
    font-optical-sizing: auto;
    font-size: large;
    /* size-adjust: 2; */
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    /* font-stretch: expanded; */
    /* letter-spacing: 4px; */
}

.form-title {
    background-color: #c49bc2;
    padding: 2px;
    border-radius: 4px;
    color: white;
    width: 30%;
    text-align: center;
    margin: 10px auto;
    font-weight: 100;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
}

#transaction-list {
    /* display: flexbox; */
    padding-inline-start: 20px;
    padding-inline-end: 20px;
}

#transaction-list ul {
    list-style-type: none;
    padding: 0;
}

#transaction-list li {
    list-style-type: none;
    padding: 20px;
    padding-bottom: 5px;
    border-left: 8px solid #ddd;
    border-radius: 4px;
    margin: 20px 10px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

#transaction-list .name {
    font-weight: bold;
}

#transaction-list li:hover {
    border-color: #be8bbc;
}

.plus {
    float: right;
    background: #6fbe76;
    padding: 6px;
    border-radius: 4px;
    color: white;
    font-size: 1.3em;
}

.minus {
    float: right;
    background: #be6f6f;
    padding: 6px;
    border-radius: 4px;
    color: white;
    font-size: 1.3em;
}

.delete {
    /* float: left; */
    background: #999;
    padding: 6px;
    border-radius: 4px;
    cursor: pointer;
    color: white;
    margin-right: 12px;
}

.delete:hover {
    background: #be8bbc;
}

.form-container {
    display: flex;
    justify-content: space-between;
}

#add-transaction {
    width: 90%;
    margin: 0 auto;
}

#add-transaction input {
    margin: 20px 0;
    padding: 5px;
    margin-left: 5px;
    border: 1px solid #ccc;
    /* font-size: 14px; */
    border-radius: 4px 0 0 4px;
    box-sizing: border-box;
    width: 100%;
    float: left;
    clear: both;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}

#add-transaction button {
    border: 1px solid #999;
    background: #999;
    padding: 10px 20px;
    /* font-size: 16px; */
    display: inline-block;
    margin: 0;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    width: 100px;
    /* float: left; */
    margin: 20px 0;
    border-left: 0;
    color: white;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}
#add-transaction button:hover {
    border: 1px solid #c49bc2;
    background: #c49bc2;
    padding: 10px 20px;
    /* font-size: 16px; */
    display: inline-block;
    margin: 0;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    width: 100px;
    /* float: left; */
    margin: 20px 0;
    border-left: 0;
    color: white;
}

/* #add-transaction:after {
    content: '';
    display: block;
    clear: both;
} */

#add-transaction label {
    line-height: 5px;
}
