body {
  font-family: "Times New Roman", Times, serif;
}

/* Gaya untuk form login */
form {
  max-width: 400px;
  margin: 0 auto;
  padding: 3px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
}

form h2 {
  text-align: center;
}

form label {
  display: block;
  margin-bottom: 10px;
}

form input[type="text"],
form input[type="password"] {
  width: 100%;
  padding: 3px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form .text-center {
  text-align: center;
}

form button {
  padding: 3px 3px;
  background-color: #003D79;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background-color: #ffb75a;
}

/* Gaya untuk header */
header {
  color: #fff;
  padding: 15px;
  text-align: center;
}

header h1 {
  font-size: 28px;
  margin-bottom: 5px;
}

header h6 {
  font-size: 16px;
  font-style: italic;
}


/* Media query untuk layar dengan lebar maksimal 768px (misalnya perangkat seluler) */
@media screen and (max-width: 768px) {
  header h1 {
    font-size: 24px;
  }

  header h6 {
    font-size: 14px;
  }

  /* Gaya tambahan untuk responsif */
  form {
    max-width: 100%;
    padding: 10px;
  }
  
  form input[type="text"],
  form input[type="password"] {
    padding: 3px;
  }

  form button {
    padding: 3px 6px;
  }

  #content {
    padding-top: 0;
  }
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  padding: 0.5px;
}

.sidebar a:hover {
  font-weight: bold;
}

.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 3px;
  background-color: #fff;
}

.sidebar a {
  padding: 3px 3px 3px 32px;
  text-decoration: none;
  color: #003D79;
  display: block;
  transition: 0.3s;
}

.sidebar a:hover {
  color: #ffb75a;
}

.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  margin-left: 50px;
}

.openbtn {
  cursor: pointer;
  background-color: #003D79;
  color: white;
  padding: 3px 3px;
  border: none;
}

.openbtn:hover {
  background-color: #ffb75a;
}

#main {
  transition: margin-left .5s;
  padding: 3px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidebar {padding-top: 5px;}
  .sidebar a {font-size: 12px;}
}

.dropdown-menu li {
position: relative;
}
.dropdown-menu .dropdown-submenu {
display: none;
position: absolute;
left: 100%;
top: -7px;
}
.dropdown-menu .dropdown-submenu-left {
right: 100%;
left: auto;
}
.dropdown-menu > li:hover > .dropdown-submenu {
display: block;
}


#btn {
  all: unset;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background: rgb(0, 122, 255);
  color: white;
  border-radius: 15px;
  padding: 3px;
  cursor: pointer;
}
#btn:active {
  background-color: rgb(88, 86, 214);
}
#myButton {
  all: unset;
  position: absolute;
  top: 0;
  left: 0;
  padding: 3px 3px;
  z-index: 1;
}
#isilkpd {
  all: unset;
  position: absolute;
  top: 0;
  left: 0;
  padding: 3px 3px;
}
.mt-0 {
  margin-top: 0 !important;
}

.ml-1 {
  margin-left: ($spacer * .25) !important;
}

.px-2 {
  padding-left: ($spacer * .5) !important;
  padding-right: ($spacer * .5) !important;
}

.p-3 {
  padding: $spacer !important;
}