* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Fredoka", sans-serif;
  font-family: "Open Sans", sans-serif;
  background-color: #2c2b2b;
}

::-webkit-scrollbar {
  background-color: #2c2b2b;
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #0c82e1;
  border-radius: 10px;
}

header {
  padding: 20px;
}
@media (min-width: 1200px) {
  header {
    width: 1200px;
    margin: auto;
  }
}
header .info {
  text-align: center;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  word-spacing: 5px;
}
header .inputs {
  display: grid;
  grid-template-columns: 48% 48%;
  place-content: center;
  gap: 10px;
  margin-top: 20px;
}
header .inputs .col-all {
  grid-column: 1/3;
}
header .inputs div {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
header .inputs div input {
  flex: 1;
}
header .inputs div p {
  color: white;
  background-color: red;
  padding: 5px;
  border-radius: 5px;
}
header .inputs input {
  background-color: #4a4848;
  padding: 8px 5px;
  border-radius: 8px;
  border: none;
  outline: none;
  color: white;
  transition: 0.5s;
}
header .inputs input:focus {
  background-color: black;
  transform: scaleX(1.03);
}
header .inputs button {
  background-color: #0c82e1;
  padding: 8px;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: 0.5s;
}
header .inputs button:hover {
  background-color: #6fb7f1;
}

.table-area {
  width: 97vw;
  overflow-x: scroll;
}
.table-area .gategories {
  padding: 10px;
  width: 100%;
}
.table-area .gategories tr {
  display: flex;
  justify-content: center;
  align-items: center;
}
.table-area .gategories tr th,
.table-area .gategories tr td {
  font-size: 15px;
  color: white;
  flex: 1;
  text-align: center;
  margin-top: 10px;
  border-bottom: 1px solid #565656;
  padding-bottom: 15px;
  min-width: 80px;
}
.table-area .gategories tr th:not(:last-child, :nth-child(9)),
.table-area .gategories tr td:not(:last-child, :nth-child(9)) {
  overflow-x: hidden;
  white-space: nowrap;
}
.table-area .gategories tr button {
  background-color: #0c82e1;
  color: white;
  padding: 2px 6px;
  border-radius: 8px;
  border: none;
  margin-bottom: -15px;
  cursor: pointer;
  transition: 0.5s;
}
.table-area .gategories tr button:hover {
  background-color: #6fb7f1;
}

.hide {
  display: none !important;
}/*# sourceMappingURL=style.css.map */