body {
  font-family: 'Cinzel', serif;
  background: #444;
}

* {
  box-sizing: border-box;
}

.drag-wrapper {
  display: flex;
  justify-content: space-around;
}

.drag-section {
  flex: 1;
}

h1 {
  color: #fff;
}

h2 {
  display: flex;
  align-items: flex-end;
  text-transform: uppercase;
  font-size: 1.25vw;
  width: 90%;
  margin-left: 5%;
  height: 2em;
  color: #ddd;
}

ul {
  display: flex;
  flex-direction: column;
  padding: 3px !important;
  min-height: 70vh;
  width: 90%;
  margin-left: 5%;
  list-style-type:none;
  overflow-y:auto;
  border-radius:0.2em;
  background: #ddd;
  color:#555;
  margin-right: 5px;
  font-family: Oswald, sans-serif;
}

.beh ul { background: #aaa; opacity: 0.5; }
.alive ul { background: #fdc; }
.dead ul { background: #aaa; }
.undead ul { background: #abc; }
.idk ul { background: #b1c7c1; }

ul b { color: #e04834; }
ul i { color: #144f6d; font-style: normal; }


/* drop target state */
ul[aria-dropeffect="move"] {
  border-color:#68b;
  background:#fff;
}

/* drop target focus and dragover state */
ul[aria-dropeffect="move"]:focus,
ul[aria-dropeffect="move"].dragover
{
  outline: none;
  box-shadow:0 0 0 1px #fff, 0 0 0 3px #68b;
}

/* draggable items */
li {
  display:block;
  list-style-type:none;
  margin:0 0 2px 0;
  padding:0.2em 0.4em;
  border-radius:0.2em;
  line-height:1.3;
}

li:hover {
  box-shadow:0 0 0 2px #68b, inset 0 0 0 1px #ddd;
}

/* items focus state */
li:focus
{
  outline:none;
  box-shadow:0 0 0 2px #68b, inset 0 0 0 1px #ddd;
}

/* items grabbed state */
li[aria-grabbed="true"]
{
  background:#5cc1a6;
  color:#fff;
}

@keyframes nodeInserted {
    from { opacity: 0.2; }
    to { opacity: 0.8; }
}

.item-dropzone-area {
    height: 2rem;
    background: #888;
    opacity: 0.8;
    animation-duration: 0.5s;
    animation-name: nodeInserted;
}

@media print {
  .header-router-wrap {
    display: none !important;
  }
  body {
    background: #fff;
  }
  
  h1, h2 {
    color: #000;
  }
  
  ul {
    background: #fff !important;
    border: 1px solid gray;
  }
  
}