body {
    background-color:#888888;
}

body > div {
    background-color: #EEEEEE;
    border-radius:10px;
    border: 2px #444444 solid;

    padding: 15px;
    margin: 15px;
    min-width: 600px;
    max-width: 90vw;
    width: 30%;

    margin-left:auto;
    margin-right:auto;

    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

#modeStatus {
    text-transform: capitalize;
}

.success {
    color: green;
}

.error {
    color:darkred;
}

.transition {
    height:auto;
    max-height:500px;
    transition: max-height 0.5s;
}

.transition.hidden {
    visibility:hidden;
    max-height:1px;
}