body {
    overflow-x: scroll;

    margin: 0px;
    padding: 0px;
}

#content {
    position: absolute;
    overflow-x: hidden;
    overflow-y: scroll;
    top: 0px;
    left: 0px;

    margin: 0px;
    padding: 0px;

    min-width: 960px;

    width: 100%;
    height: 100%;

    background: url("./dank_dragon.png") no-repeat center center, rgb(160, 160, 240) repeat-x;
}

.plantButtons {
    list-style-type: none;
    min-width: 400px;
}

.plantButtons li {
    position: relative;

    list-style-type: none;
    display: inline-block;

    width: 120px;
    height: 120px;

    margin-right: 8px;
    margin-bottom: 8px;

    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;

    background-color: #999999;
    border: 2px solid #8A8A8A;
}

.plantButtons .active {
    border: 2px solid #FFA;
}

.plantButtons li:hover {
    border: 2px solid #FFA;
}

.plantButtons .patchTitle {
    position: absolute;
    top: 90px;

    width: 100%;
    text-align: center;

    text-transform: capitalize;
    color: #dab830;

    font-size: 1.2em;
}

.plantButtons .patchImage {
    position: absolute;
    left: 20px;
    top: 10px;

    width: 80px;
    height: 80px;

    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    background-repeat: no-repeat;
}

#timerSidebar {
    margin: 0px;
    padding: 0px;

    float: right;

    width: 300px;
    height: 100%;

    background-color: gray;
}

#timerSidebar .toast {
    position: relative;
    margin: 0px;
    padding: 0px;

    top: 10px;
    left: 10px;

    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;

    list-style-type: none;

    width: 280px;
    height: 100px;

    background-color: #999999;

    border: 2px solid #8A8A8A;
}

#timerSidebar .toastTitle {
    position: absolute;
    left: 90px;
    top: 15px;

    width: 100%;

    text-transform: capitalize;
    color: #dab830;

    font-size: 1.2em;
}

#timerSidebar .toastDesc {
    position: absolute;

    left: 100px;
    top: 40px;

    color: white;
    font-size: 1em;
}

#timerSidebar .toastReplant {
    position: absolute;

    left: 85px;
    bottom: 5px;

    color: white;

    font-size: 1.4em;
    font-weight: bolder;
}

#timerSidebar .toastRemove {
    position: absolute;

    left: 120px;
    bottom: 9px;

    color: red;

    font-size: 1.3em;
    font-weight: bold;
}


#timerSidebar .toastImage {
    position: absolute;
    left: 10px;
    top: 10px;

    width: 80px;
    height: 80px;

    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    background-repeat: no-repeat;
}