#status-display {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(100, 100, 255, 0.5);
  padding: 10px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

#status-display h2 {
  margin-bottom: 5px;
}

#status-display .progress {
  margin-bottom: 5px;
}

.dungeon-header {
  width: 75%;
  margin: 0 auto; 
}

.playmode {
  border-radius: 5px;
  background-color: #3399ff;
  font-size: 0.875em;
  padding: 0.125em 0.375em 0em;
  margin-right: 8px;
}

/* Larger playmode badges only on main page */
#main-page .playmode {
  font-size: 1.1em;
  padding: 0.3em 0.6em 0.1em;
}

.note-name {
  border: 1px solid white;
  background-color: rgba(255, 255, 255, 0.8);
  color: black;
  padding: 2px 5px;
  border-radius: 3px;
  margin: 0 2px;
  display: inline-block;
}
.round-card {
  display: flex;
  align-items: stretch;
  background-color: #fff;
  color: #333;
  height: 7em;
  box-shadow: 1px 1px 2px #FFF9;
  margin-bottom: 5px;
  border-radius: 10px 0 0 10px;
  position: relative;
  width: 95vw;
  transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  /* overflow: hidden; */
}

.round-card .levelname{
  font-size: 1.4em;
    font-weight: bold;
    background-color: #3399FF;
    padding: 0 1em;
    border-radius: 4px 0 0  4px;
}
.round-card .blurb{
  width: 55%;
  border-right: 1px solid #333;
  font-size: 0.8em;
  display: flex;
  align-items: center;
  padding: 0em 1em;
}

.blurb .playmode {
  font-size:0.8em
}
.round-card .quote{
  width: 45%;
  display: flex;
  align-items: center;
  padding: 0em 1em;
}

.round-card.black-key {
  top: -12px;
  right: -30px;
  width: 60%;
  height: 20px;
  background-color: #222;
  box-shadow: 1px 1px 2px #FFF3;
  z-index: 2;
  margin-bottom: -20px;
  border-radius: 4px 0 0 4px;
}

.round-card.selected {
  background-color: #48ccff33;
  /* box-shadow: 0 0 0 3px #48ccff, 0 0 100px 0#ccffaa; */
  margin-left: 60px;
  border-radius: 30px 0 0 30px;
  width: 95vw;
  color: #fff6;
}

@keyframes rollUp {
  from {
    max-height: 200px;
    opacity: 1;
    margin-bottom: 5px;
  }
  to {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
  }
}

.round-card.invis {
  animation: rollUp 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.round-card.active {
  opacity: 1 !important;
  width: 100vw;
  z-index: 3;
}

.selected .note-box {
  color: #FFFa;
  border-color: #999a;
}

.trigger-note {
  float: left;
  padding: 10px;
  background-color: #3399ff;
  border-right: 4px solid #cffa;
  width: 1.4em;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  height: auto;
  border-radius: 5px 0px 0px 5px;
  color: #fff
}
.trigger-note.defeated {
  background-color: forestgreen;
}
.trigger-note.disabled {
  background-color: #999;
  border-color:#ccc
}

.disabled .riff-preview {
  display: none;
}
:not(.disabled) .disabled-notice{
  display: none;
}
.disabled .disabled-notice{
  padding: 10px;
  background-color: #999;
  color: #fff;
  border-radius: 0 0 5px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 63%;
  text-shadow: #333;

}

/* Full width for Boss round unlock notice */
.round-card[data-trigger-note="B"].disabled .disabled-notice {
  width: 100%;
}
.riff-preview {
  padding: 14px 0px 0px 14px;
  display: inline-block;
}

.round-card-content {
  flex-grow: 1;
  padding: 10px;
  display: block;
}

.note-boxes {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.note-row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 2px;
}

.note-box {
  width: 30px;
  height: 30px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background-color: transparent;
  margin-right: 2px;
}

.note-box.defeated {
  background-color: #6699;
}

.note-box.done {
  background-color: #90ee90;
}

