* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #f4f4f4;
  border-bottom: 1px solid #ccc;
}

header h1 {
  font-size: 1.5em;
}

.header-buttons button {
  margin-left: 10px;
  padding: 8px 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.header-buttons button:hover {
  background-color: #0056b3;
}

main {
  display: flex;
  height: calc(100vh - 60px);
}

.sidebar {
  width: 60px;
  background-color: #f4f4f4;
  padding: 10px;
}

.canvas-container {
  flex: 1;
  position: relative;
}

#properties {
  width: 300px;
  background-color: #f4f4f4;
  padding: 10px;
  overflow-y: auto;
}

.zoom-controls {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
}

.zoom-controls button {
  margin: 2px 0;
  padding: 6px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.zoom-controls button:hover {
  background-color: #0056b3;
}
 

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