section[role=application] {
    position: relative;
    width: calc(100% - 16px);
    height: 80vh;
    max-height: 76vh;
    border: solid #808080 1px;
    background-color: var(--background-color-light);
    overflow: hidden;
}

.toolbar {
    width: calc(100% - 22.5px);
    height: 2.5em;
    border: solid #808080 1px;
    border-bottom: none;
    background-color: var(--background-color-light);
    overflow: hidden;
    margin-left: 8px;
    margin-bottom: -8px;
    padding: 0.25em;
}

.toolbar > button, .toolbar > button:disabled, .toolbar > button:hover:disabled, .toolbar > button:active:disabled, .toolbar > button:hover:active:disabled {
    width: 2.5em;
    height: 2.5em;
    overflow: hidden;
    text-align: center;
    padding: 0.5em;
    padding: 0px;
    border: none;
    background-color: transparent;
}

.toolbar > button > img {
    width: 1.5em;
    height: 1.5em;
}

.toolbar > button:hover, .toolbar > button:active {
    border: solid #ccc 1px;
    background-color: var(--background-color);
}

.toolbar > button:hover:active, .toolbar > button.active {
    border: solid #ccc 1px;
    background-color: var(--background-color-dark);
}

/*Phones*/
@media (max-device-width:480px){
    .toolbar {
        height: 3.5em;
    }

    .toolbar > button, .toolbar > button:disabled, .toolbar > button:hover:disabled, .toolbar > button:active:disabled, .toolbar > button:hover:active:disabled {
        width: 3.5em;
        height: 3.5em;
    }

    .toolbar > button > img {
        width: 2.5em;
        height: 2.5em;
    }
}