#app {
  user-select: none;
}
.container.fluid,
.layout {
  min-height: 100%;
  display: flex;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.flex-col {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.gap-20{
  gap:20px;
}
.console-drawer {
  background-color: black;
  color: green;
  font-family: monospace;
  overflow-y: auto;
  height: 200px;
}

.empty-chart {
  width: 100%;
  display: flex;
  height: 350px;
  justify-content: center;
  align-items: center;
  border: dotted 1px;
  border-radius: var(--border-radius);
}

.button {
  cursor: pointer;
}
.button.dimmed {
  opacity: 0.2;
}
.button.dimmed:hover {
  opacity: 1;
}

.hover-hilite {
  cursor: pointer;
}
.hover-hilite:hover {
  filter: brightness(1.2);
}

.icon,
html .v-list__tile__action,
.v-list__tile__avatar {
  min-width: 34px;
  margin-right: 0;
  padding-right: 0;
  display: flex;
  justify-content: flex-start;
}

.blank-card{
  display: flex;
  align-items:center;
  justify-content: center;
  border:dotted 1px;
  cursor: pointer;
}

.blank-card:hover{
  background:rgba(255, 255, 255, .05);
}

.editable-text:hover {
  cursor: pointer;
  text-decoration: underline;
}

#unused {
  .right-menu-item-counter {
    position: absolute;
    background-color: #4caf50;
    left: 33px;
    padding: 0px 4px;
    border-radius: 12px;
    font-size: 9px;
    top: 10px;
  }
  .text-editable:hover {
    text-decoration: underline;
    cursor: pointer;
  }
  .game-flow-chart {
    height: 350px;
    position: relative;
  }
  

  .hidden {
    visibility: hidden;
  }
  .cell {
    background: #636363;
    padding: 0.5em 1em;
    border-radius: 20px;
  }
  .element-category {
    font-size: 0.5em;
    margin-top: 0.4em;
  }

  .theme--dark.v-sheet.blank,
  .tag-string.blank {
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: white;
    border: dashed 2px;
    cursor: pointer;
  }

  .tag-string.blank {
    font-size: 20px;
    padding: 0;
    cursor: pointer;
  }

  .allow-on-top .rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }


}
