#container{
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    width: 1200px;
    display: flex;
    box-shadow: 2px 2px 2px #555555;
    background-color: #ffffff;
    
}

.dashboard-icon{
    color: #ffffff;
    font: normal 16pt gotham-bold;
    padding: 20px;
    cursor: pointer;
    border-left: 5px solid rgba(0,0,0,0);
}

.dashboard-icon-active{
    border-left: 5px solid #eeeeee;
}

.dashboard-icon:hover {
    border-left: 5px solid rgba(255,255,255,1);
}

.category-row{
    padding: 5px;
    width: 800px;
    border: 1px dashed rgba(0,0,0,0);
    cursor: pointer;
}

.category-row > div{
    display: inline-block;
    
}
.category-row:hover{
    border: 1px dashed #0E76A9;
}

.category-row-hidden{
    display: none;
    height: auto;
    padding: 10px;
    border-bottom: 2px solid #0E76A9;
}

.category-row:nth-child(even) {
    background-color: #eeeeee;
}

.category-row-column:nth-child(1) {
    width: 150px;
}

.category-row-column:nth-child(2) {
    width: 150px;
}

.category-row-column:nth-child(3) {
    width: 150px;
}


#dashboardnav{
    width: 200px;
    background-color: #0E76A9;
}

#dashboarddiv{
    color: #555555;
    font: normal 12pt roboto-medium;
    width: 1000px;
    height: auto;
    overflow: initial;
    flex-direction: column;
    min-height: 700px;
    padding: 20px;
    margin-top: 0px;
}

.dashboard-page{
    display: none;
}

#dashboard-warning{
    font: normal 10pt roboto-medium;
    background-color: #dddddd;
    color: #000000;
    border-radius: 10px;
    width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    padding: 15px;
}

#paypal-status-div{
    width: 600px;
    border: 1px solid #eeeeee;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

fieldset{
    border: 1px solid #eeeeee;
    border-radius: 5px;
    padding: 20px;
    display: inline-block;

}

legend{
    font: normal 10pt gotham-bold;
    text-transform: uppercase;
}

.customButtonBlueSmall{
    margin: 7px;
    padding:5px;
    color: #FFFFFF;
    background-color: #0E76A9;
    font: bold 10pt gotham-bold;
    width: 80px;
    border: 2px solid #0E76A9;
    border-radius: 5px;
    cursor: pointer;
}

.customButtonWhiteSmall{
    margin: 7px;
    padding: 5px;
    color: #555555;
    background-color: #ffffff;
    font: bold 10pt gotham-bold;
    width: 80px;
    border: 2px solid #555555;
    border-radius: 5px;
    cursor: pointer;
}

.customButtonWhiteTiny{
    margin: 0px;
    padding: 3px;
    color: #777777;
    background-color: #ffffff;
    font: bold 8pt gotham-bold;
    width: 60px;
    border: 1px solid #777777;
    border-radius: 5px;
    cursor: pointer;
}