::-webkit-scrollbar {
  height: 4px; /* height of horizontal scrollbar ← You're missing this */
  width: 4px; /* width of vertical scrollbar */
  /* border: 1px solid #d5d5d5; */
  background: #919aaa;
}

body {
  background-color: #0e1632;
}

ul > li {
  list-style: none;
}

.nav-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-link {
  display: flex !important;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 180px;
  /* gap: 50px; */
}

.nav-link > p {
  height: 100%;
  margin-bottom: 0;
}

.copybox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* width: 350px; */
  /* max-width: 445px; */
  max-width: 550px;
  filter: drop-shadow(0px 10px 5px rgba(0, 0, 0, 0.1));
}

.copybox-top {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  gap: 10px;
  /* width: 445px; */
  width: 550px;
  /* width: 590px; */
  min-height: 34px;
  /* component bg */
  background: #3c4257;
  border-radius: 10px 10px 0px 0px;
}

.copybox-top > p {
  margin: 0;
  font-size: 14px;
  color: #919aaa;
  line-height: 15px;
}

.copied-msg {
  position: absolute;
  right: 20px;
  top: 30px;
}

.copybox-bottom {
  font-size: 14px;
  line-height: 20px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  gap: 10px;
  /* width: 445px; */
  width: 550px;
  /* hover */
  background: #242940;
  border-radius: 0px 0px 10px 10px;
}

@media (max-width: 1450px) {
  .copybox,
  .copybox-top,
  .copybox-bottom {
    width: 450px;
  }
}

@media (max-width: 1250px) {
  .copybox,
  .copybox-top,
  .copybox-bottom {
    width: 400px;
  }
}

.copybox-bottom > pre {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  white-space: pre-line;
}

.copybox-response .copybox-top {
  background: #e3e8ee;
  color: #242940;
}

.copybox-response .copybox-bottom {
  background: #26272b;
}

.copybox-code {
  /* width: 310px; */
  color: #ebebeb;
  background-color: inherit;
}

@media (max-width: 600px) {
  .copybox-top,
  .copybox-bottom {
    width: 300px;
  }
}

/* attribute buttons */

.attribute-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: #ebebeb;
}

.panel {
  margin: 10px 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease-out;
}

.panel > p {
  line-height: 25px;
}

.show-more-btn {
  margin-top: 10px;
  margin-left: 20px;
  padding: 4px 8px;
  border: 1px solid rgba(235, 235, 235, 0.3);
  border-radius: 40px;
  transition: all 0.2s;
}

.see-more-btn {
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  background: #242940;
  font-size: 16px;
  color: #ebebeb;
  width: 130px;
  margin: 0 auto;
  border: 1px solid #3c4257;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s;
}

.see-more-btn:hover {
  background: #313442;
}

.show-more-btn:hover {
  background: #313442;
}

.show-more-contents {
  margin-top: 8px;
  margin-left: 20px;
}

.panel-child-box {
  border: 1px solid;
  gap: 10px;
  max-width: 400px;

  /* underline */

  border: 1px solid rgba(235, 235, 235, 0.3);
  border-radius: 10px;
}

.panel-child-box > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px 12px;
  border-bottom: 1px solid rgba(235, 235, 235, 0.3);
}

.panel-child-box > div:last-child {
  border-bottom: none;
}

/* attribute stylings */

.highlight {
  padding: 2px 5px;
  /* background-color: #e0e0e0; */
  background-color: #242940;
  border: 1px solid #3c4257;
  color: #ebebeb;
  border-radius: 3px;
}

.attributes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.attributes .font-weight-bold {
  font-weight: 600;
}

.attributes-head {
  padding: 10px 0px;
  width: 370px;
  border-bottom: 1px solid #bdbdbd;
}

.attributes-contents {
  width: 370px;
  border-bottom: 1px solid #bdbdbd;
}

.attributes-contents > p {
  line-height: 35px;
  width: 370px;
  margin-bottom: 10px;
}

@media (max-width: 450px) {
  .attributes-head,
  .attributes-contents,
  .attributes-contents > p {
    width: 300px;
  }
}
.docs-article ul,
.docs-article ol,
.docs-article dl {
  padding-left: 0;
}

.page-link {
  border-radius: 0.25rem;
}

.card {
  background-color: transparent !important;
  border: 1px solid #383d54;
}
