.mt-top-privacy {
    margin-top: 100px;
}
.justify {
    text-align: justify;
}
.dash-style {
    list-style-type: '-';
}
.dropdown-menu {
    background-color: rgba(0, 0, 0, 0.7);
    
}
.dropdown-item {
    color: white;
}
.dropdown-item:hover {
    background-color: #444;
    color: white; /* Warna latar hover */
}

.dropdown-item:focus, .dropdown-item.active {
    background-color: #444;
    color: #fff; /* Warna teks saat diklik */
}

.modal-content {
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 0;
  }
  .modal-header {
    border-bottom: 1px solid #444;
  }
  .modal-title {
    color: #fff;
  }
  .modal-body {
    padding: 0;
  }
  .menu-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  .menu-list li {
    padding: 15px 0;
    text-align: center;
    /* border-bottom: 1px solid #444; */
  }
  .menu-list li:last-child {
    border-bottom: none;
  }
  .menu-list li a {
    color: #fff;
    text-decoration: none;
    display: block;
  }
  .menu-list li:hover {
    background-color: #444;
  }

  /* Fullscreen modal for mobile devices */
  @media (max-width: 768px) {
    .modal-dialog {
      max-width: 100%;
      margin: 0;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .modal-content {
      height: 100%;
      border: none;
      border-radius: 0;
    }
    .modal-body {
      flex-grow: 1;
      overflow-y: auto;
    }
    .desktop-only {
        display: none !important;
    }

  }
  @media (min-width: 769px) {
    .mobile-only {
      display: none !important;
    }

  }