/* app css stylesheet */

.menu {
  list-style: none;
  border-bottom: 0.1em solid black;
  margin-bottom: 2em;
  padding: 0 0 0.5em;
}

.menu:before {
  content: "[";
}

.menu:after {
  content: "]";
}

.menu > li {
  display: inline;
}

.menu > li + li:before {
  content: "|";
  padding-right: 0.3em;
}

.nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #333;
  overflow: hidden;
}

.nav li {
  float: left;
}

.nav li a, .dropdown-content a span {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.nav li a:hover, .dropdown:hover .dropdown-content {
  background-color: #ddd;
  color: black;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.field-container {
  display: flex;
  flex-direction: column;
  flex-flow: column;
  justify-content: start;
}

.row-container {
  display: flex;
  flex-direction: row;
  flex-flow: row;
  align-items: center;
  justify-content: start;
  background-color: #b3d4fc;
  margin-bottom: 10px;
  margin-top: 10px;
}

.field {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: left;

  /*min-height: 50px;*/
  margin-bottom: 10px;
  background-color: #b3d4fc;
}

.demo-button {
  background-color: rgba(0,45,4,0.62);
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}
.demo-button:hover {
  background-color: rgba(0, 45, 4, 0.39);
}

.demo-button button {

}

.event-row {
  margin: 1rem;
  min-width: 200px;
  background-color: #b3d4fc;

  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: left;

  min-height: 50px;
}

.field-name {
  /*min-width: 50px;*/
}

.field-name span {
  color: #222222;
  font-family: "Roboto Light", serif;
}

.config-page {

}

.disabled {
  opacity: 0.3;
  background-color: rgba(0,0,0,0.15);
  pointer-events: none;
}

.half-opa {
  opacity: 0.5;
}


