body {
    margin: 0;
    padding: 0;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
}
.container {
    width: 720px;
    margin: 20px auto;
    position: relative;
}
.formFields {
    width: 300px;
}
.formTable {
    width: 100%;
    position: relative;
    padding: 10px 0;
}
#chartContainer {
    width: 400px;
    position: absolute;
    top: 0;
    right: 0;
}
h2 {
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    font-size: 1rem;
}
.form label {
    display: inline-block;
    width: 50px;
}
.form input {
    width: 195px;
    height: 25px;
    border: 1px solid #6c3296;
    padding: 3px 5px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
}
.form button {
    margin-left: 10px;
    color: #ffffff;
    background: #6c3296;
    background: -moz-linear-gradient(top, #6c3296 0%, #57287a 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6c3296), color-stop(100%, #57287a));
    background: -webkit-linear-gradient(top, #6c3296 0%, #57287a 100%);
    background: -o-linear-gradient(top, #6c3296 0%, #57287a 100%);
    background: -ms-linear-gradient(top, #6c3296 0%, #57287a 100%);
    background: linear-gradient(to bottom, #6c3296 0%, #57287a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='${first}', endColorstr='second',GradientType=0 );
    -webkit-outline: none;
    -moz-outline: none;
    -ms-outline: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    padding: 5px 10px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    font-size: 1rem;
    cursor: pointer;
}
.form input.newYear {
    width: 35px;
    margin-left: 50px;
}
.form input.newAmount {
    width: 45px;
    margin-left: 10px;
}
.form button.add-btn {
    margin-left: 10px;
    font-size: 14px;
    font-weight: normal;
}
.form .selectInput {
    display: inline-block;
    position: relative;
    width: 195px;
    border: 1px solid #6c3296;
    padding: 3px 5px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
}
.form .selectInput:after {
    content: ' ';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border-left: 1px solid #f4e0fc;
    background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAICAYAAAAiJnXPAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFlJREFUeNpiDNeoEmBgYDBgIB5cYPz//z9DhGb1fCAngQgNC1Zcb01kArFADJAAMRpADCaYCAGNcA0omvBoRNGAoQmLRgwNYAAKCGwYGKoJuOTAoUcqAAgwAF4SSmy29mwzAAAAAElFTkSuQmCC") 50% 50% no-repeat;
}
.form select {
    -webkit-outline: none;
    -moz-outline: none;
    -ms-outline: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background-color: transparent;
    position: relative;
    z-index: 100;
    width: 100%;
    height: 25px;
}
.legend {
    padding: 0 0 0 15px;
}
.legend li {
    list-style-type: square;
}
.legend li.initial {
    color: #000000;
}
.legend li.shouldUpdate {
    color: #6c3296;
}
.legend li.updated {
    color: #30805d;
}
.legend li.willReceiveProps {
    color: red;
}