@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

* {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-optical-sizing: auto;
  font-style: 300;
  text-align: left;

  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-optical-sizing: auto;
  font-style: 300;
  text-align: left;

  background-color: #18181a;
  color: #ffffff;
  padding: 100px;
}
.container {
  width: 100%;
  max-width: 1500px;
  margin: auto;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
  font-size: 20px;
  flex-wrap: wrap;
  gap: 15px;
}
nav span {
  font-weight: 500;
}
nav .menu {
  display: flex;
  gap: 15px;
}
nav .menu a {
  transition: all 0.3s;
  color: #989898;
}
nav .menu a:hover {
  color: #ffffff;
}
.content h1 {
  font-size: 30px;
  max-width: 65%;
  margin-bottom: 100px;
}
.content .highlight {
  background-color: rgb(201, 201, 55);
  color: #18181a;
  padding: 0 2.5px;
}
.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  gap: 15px;
  flex-wrap: wrap;
}
.table-header h2 {
  font-size: 20px;
  color: #989898;
}
.table-header .search-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.table-header .search-box input {
  background-color: transparent;
  padding: 12.5px 15px;
  outline: none;
  border: 2px solid #989898;
  border-radius: 50px;
  color: #ffffff;
  width: 200px;
}
input:focus {
  border: 1px solid red;
}
input::placeholder {
  color: #989898;
}
.table-header .search-box svg {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #989898;
  margin-right: 15px;
}

.hidden {
  display: none;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.3s ease;
}
.visible {
  height: auto;
  opacity: 1;
  transition: height 0.3s ease, opacity 0.3s ease;
}
#loading,
#error {
  display: none;
}
#loading {
  color: blue;
}
#error {
  color: red;
}
.table-container {
  overflow-x: auto;
}
table {
  width: 100%;
  font-size: 20px;
  border-collapse: collapse;
}
table thead {
  color: #989898;
}
tr {
  transition: all 0.3s;
  border-bottom: 1px solid #989898;
}
tr:hover {
  background-color: #262626;
}
table tr th,
table tr td {
  padding: 15px 0;
  padding-right: 15px;
}
table h3 {
  margin-left: 15px;
  color: #989898;
}
table ul {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
table ul li {
  background-color: #333333;
  padding: 15px;
  border-radius: 15px;
  font-size: 17.5px;
}
table .comment-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50px;
  padding: 5px;
  padding-right: 15px;
  cursor: pointer;
}
table .comment-button div {
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
table .comment-button svg {
  width: 20px;
  height: 20px;
  color: #18181a;
}
#rerumCountText {
  font-weight: 700;
}

@media (max-width: 850px) {
  body {
    padding: 50px;
  }
  .content h1 {
    font-size: 25px;
    max-width: unset;
  }
}
@media (max-width: 640px) {
  body {
    padding: 25px;
  }
  /* .table-header {
    flex-direction: column;
    align-items: flex-start;
  } */
  .table-header .search-box input {
    width: unset;
  }
}
