#symulator-wrapper {
  width: 100%;
  background: #f0f0f0;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* Toolbar na górze */
#toolbar {
  width: 100%;
  background: #222;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  gap: 10px;
  border-bottom: 1px solid #000;
}

/* Panel + Workspace w jednej linii */
#panel-workspace-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 500px;
}

/* Lewy panel */
#panel {
  width: 25%;
  background: #ddd;
  padding: 10px;
  box-sizing: border-box;
  overflow-y: auto;
}

/* Obszar roboczy */
#workspace {
  flex-grow: 1;
  width: 75%;
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 10px;
  box-sizing: border-box;
}

#siatka {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
/* Inne style pozostają bez zmian */
