html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: Arial, serif;
  background: #444;
  color: #eee;
  padding: 8px;
}

* {
  box-sizing: border-box;
}

h1 {
  font-size: 1.4em;
  margin: 0.3em 0;
}

a {
  color: #55ff99;
}
a small {
  opacity: 0.7;
}

button {
  background-color: #00aa44;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgb(0, 136, 54.4);
  border-radius: 4px;
  padding: 3px 5px;
}

.block {
  display: block;
}

.nowrap {
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.margin {
  margin: 5px;
}

.success {
  color: #090;
}

.yes, .victory {
  color: #0b0;
}

.no, .failed, .defeat {
  color: #f33;
}

.unknown {
  color: #d60;
}

.error {
  font-weight: bold;
  color: #e00;
}

.page {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.page .heading {
  display: flex;
  width: 100%;
  flex: 0 1 auto;
}
.page .heading > div {
  display: flex;
  width: 50%;
  align-items: baseline;
}
.page .heading h1 {
  width: 100%;
}
.page .heading form {
  white-space: nowrap;
}
.page .heading .search {
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 600px) {
  .page .heading {
    display: flex;
    flex-direction: column;
  }
  .page .heading .name {
    width: 100%;
  }
  .page .heading .search {
    justify-content: normal;
    margin-bottom: 5px;
  }
}
.page .data {
  display: flex;
  width: 100%;
  gap: 0.5em;
}
.page .data .data-grid {
  min-width: 66%;
}
.page .data .data-grid small {
  opacity: 0.7;
}
.page .data .data-grid form {
  display: inline-block;
}
.page .data .data-grid button {
  background: rgba(0, 0, 0, 0.2);
  border: rgba(0, 0, 0, 0.2);
}
.page .data .data-chart {
  max-width: 33%;
}
.page .data .data-chart canvas {
  max-height: 150px;
}
.page .chart {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.page .chart .show-by {
  flex: 0 1 auto;
}
.page .chart .canvas-container {
  flex: 1 1 auto;
  position: relative;
}
.page .chart canvas {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
@media screen and (max-height: 600px) {
  .page .chart canvas {
    position: static;
  }
}
.page .footer {
  flex: 0 1 auto;
}

.footer {
  color: #949494;
  text-align: center;
  font-size: 0.8em;
  margin-top: 20px;
  border-top: 1px solid #cccccc;
}

.xdebug-error {
  color: #000;
}
.xdebug-error a {
  color: inherit;
}

.search-result img {
  vertical-align: middle;
}

.form-refresh label {
  font-size: 0.8em;
}

.message {
  display: inline-block;
  margin: 1em 0;
  background: rgba(255, 255, 255, 0.2);
  padding: 1em;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0.4em;
}
.message h3 {
  margin: 0 0 0.2em;
}
.message.error {
  background: rgb(255, 178.5, 178.5);
}

.show-by {
  margin: 0.5em 0;
}

.progress-block .progress-char {
  margin: 5px 0;
  display: flex;
}
.progress-block .progress-char .progress-class {
  display: flex;
  flex-direction: column;
  padding-top: 0.5em;
  min-width: 5em;
  background: rgba(255, 255, 255, 0.2);
}
.progress-block .progress-char .progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.progress-block .progress-char .progress-bar .progress-no {
  display: inline-block;
  min-width: 2.5em;
  text-align: right;
}
.progress-block .progress-char .progress-bar .progress-date {
  padding-right: calc(2.5em + 20px);
}
.progress-block .progress-char .progress-class, .progress-block .progress-char .progress-bar {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px;
  text-align: center;
}

dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0.1em 0 0.5em 0;
}
dl dt, dl dd {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  padding: 4px;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 50%;
  max-width: 50%;
  margin: 0;
}
@media screen and (max-width: 600px) {
  dl dt, dl dd {
    font-size: 0.8em;
  }
}
dl dt {
  font-weight: bold;
  flex-basis: 30%;
  max-width: 30%;
  background: rgba(255, 255, 255, 0.1);
}
dl dt small {
  font-weight: normal;
}
dl dd {
  flex-basis: 70%;
  max-width: 70%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.2);
  gap: 5px;
}

.activities {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 1em;
}
.activities small {
  opacity: 0.7;
}
.activities .classes {
  display: flex;
  gap: 0.5em;
}
.activities .classes .class {
  display: flex;
  gap: 0.5em;
  padding: 0.5em;
}
.activities .classes .class.selected {
  background: rgba(255, 255, 255, 0.2);
}
.activities .character {
  display: flex;
  overflow-x: auto;
  transform: rotateX(180deg);
}
.activities .character table {
  border-collapse: collapse;
  transform: rotateX(180deg);
}
.activities .character table td, .activities .character table th {
  margin: 0;
  padding: 0.3em;
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.activities .character table tr.selected td {
  background: rgba(255, 255, 255, 0.2);
}
.activities .character .exception {
  transform: rotateX(180deg);
}
.activities .character .pgcr {
  padding-left: 2em;
  transform: rotateX(180deg);
}
.activities .character .pgcr table {
  transform: rotateX(0deg);
}

/*# sourceMappingURL=app.css.map */
