body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  height: 100vh;
}

.canvas-container {
  width: 66.67%;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#svgCanvas {
  max-width: 100%;
  max-height: 100%;
}

.ui-container {
  width: 33.33%;
  padding: 20px;
  box-sizing: border-box;
}

input, select, button {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 5px;
}

button {
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #45a049;
}

.logo-buttons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.logo-buttons button {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  padding: 5px;
}

.logo-buttons img {
  width: 24px;
  height: 24px;
  margin-bottom: 5px;
}
