* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: rgb(30, 30, 37);
}

.navbar {
  background-color: rgb(27, 27, 32);
  color: white;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  margin-top: 5px;
  margin-left: 10px;
  justify-content: center;
}

.navbar-logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.navbar-menu {
  list-style: none;
  display: flex;
}

.navbar-menu li {
  margin-right: 20px;
}

.navbar-menu li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

.navbar-menu li a:hover {
  color: #89befe;
}






.container {
    text-align: center;
    margin-top: 20px;
  }
  
  .table {
    width: 90%;
    background-color: #151515;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    border-collapse: separate;
    border-spacing: 0 0.3vw;
  }
  
  .table th,
  .table td {
    padding: 10px;
    color: rgb(200, 200, 200);
  }

  th.sorted-asc, th.sorted-desc,
td.sorted-asc, td.sorted-desc {
  color: rgb(200, 170, 210);
}
  

.table td:nth-child(1) {
    background-color: #202020;
}
.table td:nth-child(2) {
  background-color: #1c1c1c;
}
.table td:nth-child(3) {
  background-color: #202020;
}
.table td:nth-child(4) {
  background-color: #1c1c1c;
}
.table td:nth-child(5) {
  background-color: #202020;
}
.table td:nth-child(6) {
  background-color: #1c1c1c;
}
  
  #searchInput, #sortSelect {
    margin-top: 10px;
  }
  


  

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.navbar {
    background-color: #222;
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.navbar-logo img {
    width: auto;
    height: 35px;
    margin-right: 50px;
}

.navbar-menu {
    list-style: none;
    display: flex;
}

.navbar-menu li {
    margin-right: 20px;
}

.navbar-menu li a {
    text-decoration: none;
    color: rgb(200, 200, 200);
    font-size: 20px;
    transition: color 0.3s;
}

.navbar-menu li a[href="reviewers.html"] {
  color: rgb(200, 200, 200);
  font-weight: 500;
}

.navbar-menu li a[href="index.html"] {
  color: rgb(200, 200, 200);
  font-weight: 500;
}

.navbar-menu li a:hover {
    color: rgba(161, 44, 245, 0.6);
}






.introduction {
  text-align: center;
  color: rgb(162, 44, 245);
  margin-top: 15px;
  margin-bottom: 7px;
  font-weight: bold;
}

.description {
  text-align: center;
  color: rgb(200, 200, 200);
  margin-left: 20px;
  margin-right: 20px;
  font-weight: bold;
}

.price-warn {
  text-align: center;
  color: rgb(162, 44, 245);
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 7px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .table {
      width: 95vw;
      margin: 15px auto;
      border-radius: 0px;
    }

  .table th, .table td {
      font-size: 12px;
      padding: 5px;
    }
}


.switch {
  position: relative;
  display: inline-block;
  width: 304px;
  height: 32px;
}

.switch input[type="checkbox"] {
  display: none;
}

.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2e2e2e;
  transition: 0.4s;
  border-radius: 0;
}

.switch input:checked + .slider {
  background-color: #2e2e2e;
}

.switch .slider:before {
  position: absolute;
  content: "";
  height: 28px;
  width: 150px;
  left: 2px;
  bottom: 2px;
  background-color: rgba(193, 193, 193, 0.081);
  transition: 0.4s;
  border-radius: 0;
}

.switch input:checked + .slider:before {
  transform: translateX(150px);
}

.switch .slider-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0 27px;
  color: #ffffff;
  font-size: 14px;
}

.switch .slider-text span {
  flex: 1;
  text-align: center;
}

.switch .slider-text .left-text {
  text-align: left;
}

.switch .slider-text .right-text {
  text-align: right;
}



.searchbar {
  text-align: center;
  margin-top: 15px;
  margin-left: 20%;
  margin-right: 20%;
  margin-bottom: 30px;
}

.searchbar input {
  width: 100%;
  padding: 12px 24px;
  background-color: transparent;
  transition: transform 250ms ease-in-out;
  font-size: 14px;
  line-height: 18px;
  color: #575756;
  background-color: transparent;
  background-image: url("images/search.png");
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-position: 95% center;
  border-radius: 50px;
  border: 2px solid rgb(162, 44, 245);
  transition: all 250ms ease-in-out;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.searchbar input::placeholder {
  color: rgba(87, 87, 86, 0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.searchbar input:hover,
.searchbar input:focus {
  padding: 12px 0;
  outline: 0;
  border: 1px solid transparent;
  border-bottom: 1px solid rgb(162, 44, 245);
  border-radius: 0;
  background-position: 100% center;
}




.sort-icon {
  font-size: 0.6rem;
  margin-left: 5px;
  display: inline-block;
}

th {
  position: relative;
  cursor: pointer;
}

th.sorted-asc .sort-icon::after {
  content: "\25B2";
}

th.sorted-desc .sort-icon::after {
  content: "\25BC";
}
