/* base.css */
html, body {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 14px;
    font-weight: 600;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    line-height: 20px;
    display: flex;
    flex-direction: column;
}

nav {
    padding: 12px 15px;
    margin-bottom: 4px;
    width: 100%;
    flex-grow: 0;
    background: #fafafa;
    box-sizing: border-box;
}

label {
    vertical-align: baseline;
}

.body {
    display: flex;
    align-items: stretch;
    flex-grow: 1;
}

#sidebar {
    display: flex;
    flex-direction: column;
    width: 192px;
    height: 100%;
}

#tool {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

#tool-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    height: 35px;
    margin: 0 12px;
}

#tool-menu>.menu-title>label {
    font-size: 20px;
    font-weight: 600;
}

.menu-buttons {
    align-items: baseline;
}

.footer {
    position: sticky;
}