body {
  background: grey;
  font-family: Arial, sans-serif;
  color: white;
}

.container {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
  border: 2px solid #ffffff;
  border-radius: 8px;
  text-align: center;
  background: rgba(0, 0, 0);
}

#statusConsole,
#blockedConsole {
  margin-top: 20px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  min-height: 300px;
  overflow-y: scroll;
  display: grid;
  align-items: center;
}

#statusConsole {
  background: rgb(93, 187, 85);
  display: grid;
  align-items: start;
}

#blockedConsole {
  background: rgba(253, 88, 88, 0.781);
}
#counters {
  margin-top: 20px;
}

/* #counters span {
  display: block;
  margin-bottom: 10px;
} */

button {
  cursor: pointer;
  background: rgb(0, 148, 57);
  color: rgb(0, 0, 0);
  outline: 0;
  border: 2px solid teal;
  padding: 10px;
  border-radius: 5px;
  transition: 0.2s ease-in-out;
}

button:hover {
  background: rgb(51 51 45);
  color: rgb(255, 255, 255);
}

#fileInput {
  cursor: pointer;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
