* {
  box-sizing: border-box;
  /* -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box; */
}

body {
  background-color: #222e35;
}
.container {
  background-color: #0e0e0f;
  /* width: 100%;
  height: 100%; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.setting-container {
  background-color: #251c38;
  height: 100%;
  border-radius: 2px;
}

.menu {
  padding: 10px;
  margin: 10px;
  background-color: #352a4b;
  border-radius: 2px;
}

.element-container {
  display: flex;
  width: 100%;
  justify-content: stretch;
  align-items: center;
  flex-direction: row;
}

.element-status {
  padding: 10px;
  display: flex;
  border-radius: 5px;
  z-index: 9;
  cursor: pointer;
  /* background-image: url("../public/images/sombra.png");
  background-size: cover; */
}
.element-status img {
  width: auto;
  height: auto;
}

.element-transition {
  padding: 10px;
  display: flex;
  border-radius: 5px;
  cursor: pointer;
  /* background-image: url("../public/images/sombra.png");
    background-size: cover; */
}

.element-transition img {
  width: auto;
  height: auto;
}

.workplace-container {
  width: 100%;
  height: 100%;
}

.board-container {
  width: 100%;
  height: 100%;
}
.board {
  background-color: #282f34;
  width: 100%;
  height: 100vh;
  border: #167cb6 2px solid;
  border-radius: 2px;
  position: relative;
}

svg {
  position: absolute;
  z-index: 1;
}
