.tool-list-container {
    padding: 10px;
}
.tool-list-container ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.tool-list-container ul li {
    display: inline-block;
}
.toolbox-pane input[type=button] {
    background-color: white;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid black;
    border-radius: 3px;
    width: 30px;
    height: 25px;
    cursor: pointer;
}
.toolbox-pane input[type=button]:hover:not(:disabled) {
    background-color: rgb(223,223,223);
}
.toolbox-pane input[type=button]:active {
    background-color: rgb(191,191,191);
}
.toolbox-pane input[type=button].selected-tool {
    background-color: rgb(191,191,191);
}
.toolbox-pane input[type=button][tool=translate] {
    background-image: url('../../resources/translate.png');
    background-size: auto 16px;
}
.toolbox-pane input[type=button][tool=crop] {
    background-image: url('../../resources/crop.png');
    background-size: auto 16px;
}
.toolbox-pane input[type=button][tool=brush] {
    background-image: url('../../resources/brush.png');
    background-size: auto 16px;
}
.toolbox-pane input[type=button][tool=pen] {
    background-image: url('../../resources/pen.png');
    background-size: auto 16px;
}
.toolbox-pane input[type=button][tool=eraser] {
    background-image: url('../../resources/eraser.png');
    background-size: auto 16px;
}
.toolbox-pane input[type=button][tool=paintbucket] {
    background-image: url('../../resources/fill.png');
    background-size: auto 16px;
}
.toolbox-pane input[type=button][tool=colorselector] {
    background-image: url('../../resources/colorPicker.png');
    background-size: auto 16px;
}

.color-swatch-container {
    display: block;
    padding: 5px;
    text-align: center;
}
.color-swatch-container>div {
    position: relative;
    display: inline-block;
    height: 60px;
    width: 80px;
}
.color-swatch {
    position: absolute;
    display: inline-block;
    width: 45px;
    height: 35px;
    border: 1px solid black;
}
#color-swatch-1 {
    top: 0px;
    left: 0px;
}
#color-swatch-2 {
    top: 20px;
    left: 30px;
}
#swap-color-button {
    position: absolute;
    top: 0px;
    left: 50px;
    width: 25px;
    height: 15px;
    border: 1px solid rgba(0,0,0,0.5);
    background-image: url('../../resources/swap.png');
    background-size: auto 12px;
}
#reset-color-button {
    position: absolute;
    top: 40px;
    left: 0px;
    width: 25px;
    height: 15px;
    border: 1px solid rgba(0,0,0,0.5);
    background-image: url('../../resources/reset.png');
    background-size: auto 12px;
}

.color-wheel-container {
    padding: 10px;
    display: block;
}
#color-wheel-canvas {
    margin: auto;
}
.color-slider-container {
    padding: 10px;
    display: block;
}
.color-slider-container-layout {
    display: table;
}
.color-slider-row {
    display: table-row;
}
.color-slider-row>* {
    display: table-cell;
}
.color-slider-row input[type=number] {
    width: 50px;
}