.container-server {
  margin-top: 0;
  display: flex;
  min-height: 100vh;
}

.sidebar {
  height: fit-content;
  width: 308px;
  background: #fff;
  box-shadow: 2px 0px 0px 0px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

/* .menu {
  padding-top: 24px;
} */

.menu ul > li {
  list-style: none;
  padding-block: 24px;
  border-top: 1px solid #ccc; /* Adds a top border */
  /* Adjust the color and width as needed */
}

.menu ul > li:last-child {
  border-bottom: 1px solid #ccc; /* Adds a bottom border to the last item */
}

.menu ul ul > li {
  border-top: none; /* Removes the top border for nested list items */
  border-bottom: none !important;
  padding-block: 0px;
}

.accordion-item {
  border: none;
}

.accordion-button {
  padding: 8px 16px;
  color: black;
  background-color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 17.6px */
  letter-spacing: 0.08px;
}

.accordion-button:not(.collapsed) {
  color: black;
  background-color: #fff;
  box-shadow: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 17.6px */
  letter-spacing: 0.08px;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_1743_3360' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0'%3E%3Crect x='24' y='24' width='24' height='24' transform='rotate(-180 24 24)' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1743_3360)'%3E%3Cpath d='M14 2L24 12L14 22L12.225 20.225L20.45 12L12.225 3.775L14 2Z' fill='%23949494'/%3E%3C/g%3E%3C/svg%3E");
  transform: rotate(0deg);
  transition: transform 0.2s ease-in-out;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='mask0_1743_3675' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0'%3E%3Crect y='24' width='24' height='24' transform='rotate(-90 0 24)' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1743_3675)'%3E%3Cpath d='M22 14L12 24L2 14L3.775 12.225L12 20.45L20.225 12.225L22 14Z' fill='%23949494'/%3E%3C/g%3E%3C/svg%3E");
  transform: rotate(0deg);
  display: inline-block;
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.menu ul > li > a {
  display: block;
  /* Ensure the border spans the full width */
  color: #000;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: normal;
  position: relative;
  padding: 8px 24px 8px 16px;
}

.menu ul > li > a.menu-item {
  display: block;
  /* Ensure the border spans the full width */
  color: #595959;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 17.6px */
  letter-spacing: 0.08px;
  position: relative;
  padding: 8px 24px 8px 32px;
}

.menu ul li a:hover,
.menu ul li a.active {
  font-weight: bold;
  color: black;
}

.menu ul li a.active::before {
  content: '•';
  color: var(--primary-color-500);
  margin-right: 16px;
  font-size: 16px;
}

.main-content {
  padding: 48px 96px; /* before is 86px */
  background-color: #f8f9fa;
  width: 100%;
}

.container-fluid {
  padding: 0px;
}

.header-content {
  margin-bottom: 16px;
}

h2 {
  /* font-family: "Open Sans"; */
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
}

.header-content .header-description {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.4px;
}

.sub-menu {
  display: flex;
  align-items: center;
  /* border-bottom: 1px solid #ddd; */
  /* Light grey color */
  position: relative;
  margin-bottom: 16px;
  /* Adjust this value as needed */
}

.styled-text {
  color: var(--primary-color-500);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 19.8px */
  letter-spacing: 0.45px;
  /* Blue color similar to your image */
  /* background: white; */
  /* Background color to hide the underline under the text */
  padding-right: 10px;
  /* Adjust this value as needed */
  display: inline-block;
}

.sub-menu::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background-color: #eae4eb;
  margin-left: 6px;
}

.sub-menu-content > * {
  margin-bottom: 16px;
}

.sub-menu-content > *:last-child {
  margin-bottom: 0;
  /* Remove margin from the last element */
}

.sub-menu-content-title {
  display: flex;
  align-items: center;
  /* border-bottom: 1px solid #ddd; */
  /* Light grey color */
  position: relative;
  margin-bottom: 0px;
  /* Adjust this value as needed */
}

.sub-menu-content-title .styled-text {
  color: black;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.4px;
  padding-right: 0px;
  display: inline-block;
}

.sub-menu-content-title::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background-color: #eae4eb;
  margin-left: 6px;
}

.content-section .sub-menu-content ul {
  margin-bottom: 16px; /* Adjust the value as needed */
}

.img-full-width {
  width: 100%;
  margin-block: 16px;
}

.img-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-block: 16px;
}

.unduh-fitur {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 32px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 17.6px */
  letter-spacing: 0.08px;
}

.unduh-fitur a {
  background-color: var(--primary-color-500);
  color: white;
  padding: 8px 12px;
  min-width: 135px;
}
.unduh-fitur a:hover {
  background-color: white;
  color: var(--primary-color-500);
  border: 1px solid var(--primary-color-500);
}

@media (min-width: 768px) and (max-width: 1280px) {
  .container-server {
    margin-top: 0;
    /* display: flex; */
  }
  .main-content {
    padding: 32px 48px;
    background-color: #f8f9fa;
    width: 100%;
  }
  h2 {
    /* font-family: "Open Sans"; */
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: 0.6px;
    margin-bottom: 16px;
  }
  .accordion-button {
    padding: 8px 16px;
    color: black;
    background-color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 17.6px */
    letter-spacing: 0.08px;
  }

  .accordion-button:not(.collapsed) {
    color: black;
    background-color: #fff;
    box-shadow: none;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 17.6px */
    letter-spacing: 0.08px;
  }

  .menu ul > li {
    list-style: none;
    padding-block: 12px;
    border-bottom: 1px solid #ccc;
    /* Adjust the color and width as needed */
  }

  .menu ul > li > a.menu-item {
    display: block;
    /* Ensure the border spans the full width */
    color: #595959;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 17.6px */
    letter-spacing: 0.08px;
    position: relative;
    padding: 8px 24px 8px 32px;
  }

  .header-mobile div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 32px;
  }

  .header-mobile img {
    width: 24px; /* Adjust the size as needed */
    height: 24px; /* Adjust the size as needed */
  }

  .header-mobile span {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    flex-grow: 1;
    text-align: center;
  }
  .header-content .header-description {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
  .styled-text {
    color: var(--primary-color-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: 0.45px;
    display: inline-block;
  }
  .sub-menu-content-title .styled-text {
    color: black;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
  }

  .sub-menu-content > * {
    margin-bottom: 16px;
  }
  .img-full-width {
    width: 100%;
    margin-block: 16px;
  }

  .img-center {
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-block: 16px;
  }
  .sub-menu-content > * {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  .container-server {
    display: block;
    padding: 24px 16px;
  }

  .sidebar {
    width: 100%;
    display: block;
  }

  .main-content {
    display: none;
  }

  .accordion-button {
    padding: 8px 16px;
    color: black;
    background-color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 17.6px */
    letter-spacing: 0.08px;
  }

  .accordion-button:not(.collapsed) {
    color: black;
    background-color: #fff;
    box-shadow: none;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 17.6px */
    letter-spacing: 0.08px;
  }

  .menu ul > li {
    list-style: none;
    padding-block: 12px;
    /* border-bottom: 1px solid #ccc; */
    /* Adjust the color and width as needed */
  }

  .menu ul > li > a.menu-item {
    display: block;
    /* Ensure the border spans the full width */
    color: #595959;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 17.6px */
    letter-spacing: 0.08px;
    position: relative;
    padding: 8px 24px 8px 32px;
  }

  .header-mobile div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 32px;
  }

  .header-mobile img {
    width: 24px; /* Adjust the size as needed */
    height: 24px; /* Adjust the size as needed */
  }

  .header-mobile span {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    flex-grow: 1;
    text-align: center;
  }
  .header-content .header-description {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
  .styled-text {
    color: var(--primary-color-500);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: 0.45px;
    display: inline-block;
  }
  .sub-menu::after {
    display: none;
  }
  .sub-menu-content-title .styled-text {
    color: black;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
  }
  .sub-menu-content-title::after {
    display: none;
  }

  .sub-menu-content > * {
    margin-bottom: 16px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
  .img-full-width {
    width: 100%;
    margin-block: 16px;
  }

  .img-center {
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-block: 16px;
  }
  .unduh-fitur {
    margin-top: 32px;
    display: flex;
    padding: 24px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    gap: 16px;
    font-size: 14px;
  }
  .unduh-fitur span {
    text-align: center;
  }
  .unduh-fitur a {
    width: 100%;
  }
}

/* nes styling */
/* Menghilangkan border biru pada elemen yang aktif */
:focus,
:active {
    outline: none !important;
    box-shadow: none !important;
}

/* Spesifik untuk elemen tombol */
button:focus,
button:active {
    outline: none !important;
    box-shadow: none !important;
}

/* Spesifik untuk input form */
input:focus,
input:active {
    outline: none !important;
    box-shadow: none !important;
}

/* Spesifik untuk elemen link */
a:focus,
a:active {
    outline: none !important;
    box-shadow: none !important;
}

