@import url('https://fonts.googleapis.com/css2?family=Fira+Mono:wght@400;500;700&family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  box-sizing: border-box;
}

/* Cari Background color yang bagus untuk body */
body {
  background-color: #ffffff;
  color: #000000;
  font-family: "Fira Sans", sans-serif;
  line-height: 1.5;
}








#navbar {
  width: 100%;
  position: relative;
  background-color: #252836;
  overflow-y: auto;
}

#navbar header {
  font-size: 1.25rem;
  padding: 15px 25px 15px 25px;
  color: #bac0da;
  text-align: center;
}

#navbar ul {
  height: 40vh;
  list-style-type: none;
  margin: 0;
  padding: 15px;
  overflow-y: auto;
}

#navbar li {
  margin: 0;
  padding: 10px;
  font-size: 18px;
  border-radius: 10px;
  width: 100%;
}

#navbar a {
  text-decoration: none;
  color: #fff;
  display: block;
}

#navbar li:hover {
  background-color: #7A86B8;
}

#main-doc {
  position: relative;
  padding: 25px;
}

header {
  font-size: 32px;
  font-weight: 700;
}

p {
  width: 100%;
}

code {
  font-family: "Fira Mono", monospace;
  display: block;
  position: relative;
  padding: 25px;
  color: #eeeeee;
  background-color: #252836;
  border-radius: 10px;
  white-space: pre-line;
  word-break: normal;
  word-wrap: normal;
  line-height: 2;
  overflow-x: auto;
}

.code-kwd {
  color: #FFA6D5;
}

.code-comment {
  color: #98C379;
}

.code-string {
  color: #FFE162;
}

.code-built-fn {
  color: #B9FFF8;
}

.code-fn {
  color: #F8EFD4;
}

.code-var {
  color: #a5accf;
}

.mb-0 {
  margin-bottom: 0;
}

.highlight-text {
  font-family: "Fira Mono", monospace;
  font-weight: 500;
  color: #bac0da;
  background-color: #2d3142;
  padding: 3px;
  border-radius: 5px;
}

table {
  width: 100%;
}

table, th, td {
  border: 1px solid #efefef;
  border-collapse: collapse;
}

th {
  background-color: #7A86B8;
}

th, td {
  padding: 10px;
}

.references-list a {
  color: #7A86B8;
  text-decoration: none;
}

.references-list a:hover {
  color: #bac0da;
  text-decoration: underline;
}

/* Tablet or upper */
@media only screen and (min-width: 769px) {
  #navbar {
  position: fixed;
  width: 275px;
  min-width: 250px;
  height: 74%;
  top: 12%;
  left: 0;
  background-color: #252836;
  border-radius: 0px;
  /* padding-bottom: 5%; */
  /* padding-top: 4%; */
  }

  #navbar header {
    text-align: left;
  }

  #navbar ul {
    height: 85%;
  }

  #main-doc {
  /* position: absolute; */
  margin-left: 280px;
  padding: 25px;
  margin-bottom: 100px;
  }
}



