* {
  margin: 0px;
  padding: 0px;
  border: 0px;
}
body {
  font-family: Ubuntu,Arial;
  font-size: 12px;
}

div.day div.stages {
  display: grid;
  grid-gap: 5px;
  padding: 5px;
}

div.stage {
  margin-right: 20px;
}
div.stage h2 {
  word-wrap: break-word;
  height: 44px;
}

div.band {
  min-width: 120px;
  border: solid 1px #000000;
  border-radius: 10px;
  padding: 2px 6px 10px 6px;
}
div.band.watch {
  background-color: #ffff88;
}
div.band.clash {
  background-color: #ffcccc;
}

div.band .fa {
  cursor: pointer;
}
div.band .watch-indicator {
  font-size: 20px;
  float: right;
}
div.band .fa-check {
  color: #00aa00;
}
div.band .fa-times {
  color: #ff0000;
}
div.band .fa-pencil {
  font-size: 14px;
  margin-left: 4px;
}

div.band input.notes {
  border: solid 1px #aaaaaa;
  width: 98%;
  padding: 2px;
  border-radius: 2px;
}





textarea {
  width: 100%;
  height: 600px;
  border: solid 1px #000000;
}
