body {
  margin: 0;
  font-family: sans-serif;
  display: flex;
  height: 100vh;
}

#controls {
  flex: 0 0 300px;
  width: 300px;
  min-width: 300px;
  max-width: 300px;
  padding: 20px;
  background: #f5f5f5;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  overflow-y: auto;
}
#controls label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1em;
}
#controls label input,
#controls label select {
  width: 120px;
  margin-left: 10px;
  box-sizing: border-box;
}

#workspace {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: auto;
}

#svgContainer {
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
}
#svgContainer svg {
  background: #fff;
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
}

button {
  display: block;
  width: 100%;
  margin-bottom: 1em;
}

@media print {
  body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
  }

  body * {
    visibility: hidden;
  }

  #svgContainer,
#svgContainer * {
    visibility: visible;
  }

  #svgContainer {
    position: absolute;
    top: var(--print-margin, 15mm);
    left: var(--print-margin, 15mm);
    right: var(--print-margin, 15mm);
    bottom: var(--print-margin, 15mm);
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    border: none;
    overflow: hidden;
  }
  #svgContainer svg {
    width: 100%;
    height: 100%;
  }

  @page {
    margin: 0;
  }
}

/*# sourceMappingURL=style.css.map */
