html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


.center-title {
    width: 100%; /* Pastikan div memiliki lebar penuh */
    text-align: center; /* Pusatkan teks */
    display: flex;
    justify-content: center;
}

.sidebar {
    width: 250px; /* Lebar tetap */
    min-height: 100vh; /* Sepanjang layar */
    position: fixed; /* Agar tidak bergeser */
    top: 0;
    left: 0;
    z-index: 1030; /* Pastikan sidebar ada di bawah header */
}

.content-wrapper {
    margin-left: 0px; /* Pastikan konten utama tidak tertutup */
    width: 100% ; /*calc(100% - 250px); */
    padding: 20px;
}

header {
    position: sticky;
    top: 0;
    z-index: 1040; /* Pastikan di atas sidebar */
    background: white;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
