html {
    color: white;
    font-family: sans-serif;
    font-size: 20px;
}

body {
    background-color: #5865F2;
}

#content {
    background-color: rgba(255, 255, 255, 0.15);
    margin: 20px;
    padding: 20px;
    border-radius: 50px;
}

input:focus,
span:focus {
    outline: none;
}

.currency-input {
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 8px;
    color: #5865F2;
    display: inline-block;
}

#balance {
    background:transparent;
    border: none;
    width: 50%;
    padding-left:15px;
}

.currency-input:before {
    position: absolute;
    content:"$";
    left: 8px;
}

input[type="date"] {
    font-size: 20px;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
    color: #5865F2;
    padding: 8px;
    margin: 0px;
}
p {
    margin: 1rem;
}

table {
    width: 100%;
}

tr > td:first-child {
    padding: 0.5rem;
    text-align: right;
}

tr > td:nth-child(2) {
    width: 100%;
}

@media (min-width: 480px) {
    body {
        margin: 20px auto;
        width: 400px;
    }
}
