.toolbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    background-color: #333;
    color: #fff;
    user-select: none;
}

.toolbar-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 8px;
}

.title {
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    flex: 1;
    text-align: center;
}

.spacer {
    width: 32px;
}

.window-control.back {
    background: none;
    border: none;
    color: #fff;
    padding: 0 12px;
    height: 32px;
    font-size: 20px;
    cursor: pointer;
}

.window-control.back:hover {
    background-color: rgba(255,255,255,0.1);
}

.window-control.copy {
    background: none;
    color: #fff;
    padding: 0 12px;
    height: 24px;
    font-size: 12px;
    cursor: pointer;
    margin: 0 8px;
    border: 1px solid #fff;
    border-radius: 3px;
    display: flex;
    align-items: center;
}

.window-control.copy:hover {
    background-color: rgba(255,255,255,0.1);
}