html {
  box-sizing: border-box;
  font-family: Roboto, Arial, sans-serif;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  display: grid;
  justify-items: center;
}

.body-container {
  width: 800px;
  display: grid;
  justify-items: center;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-gap: 20px;
}

.container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-gap: 8px;
  border-radius: 3px;
}

.container-output {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0.2rem;
  justify-content: space-around;
  align-items: center;
  background-color: #eee;
}

.file-container {
  display: flex;
  justify-content: space-between;
}

#model_button {
  width: 100%;
}

.container-upload {
  width: 100%;
  background-color: #eee;
}

.container-stats {
  background-color: #ddd;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-gap: 2px;
}

.container-stats p {
  margin: 0;
  padding: 0;
}

.status {
  border: 1px solid;
  color: tomato;
}

.item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  justify-items: center;
}

.video {
  width: 100%;
}

.title {
  background-color: #ddd;
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 5px 0;
}

.status-text {
}

#errors {
  color: red;
}

#inputTensorShape {
  background-color: darkgrey;
}

.good {
  background-color: lightgreen;
}

.loading {
  background-color: lemonchiffon;
}

.bad {
  background-color: tomato;
}

table {
  border-collapse: collapse;
  width: 100%;
}
td {
  width: 50%;
}
button {
  display: inline-block;
}
