/*
* demo.css
* File include item demo only specific css only
******************************************************************************/

.menu .app-brand.demo {
  height: 64px;
  margin-top: 12px;
}

.app-brand-logo.demo svg {
  width: 22px;
  height: 38px;
}

.app-brand-text.demo {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

/* ! For .layout-navbar-fixed added fix padding top to .layout-page */
/* Detached navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
  padding-top: 74px !important;
}

/* Default navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 64px !important;
}

.docs-page .layout-navbar-fixed.layout-wrapper:not(.layout-without-menu) .layout-page,
.docs-page .layout-menu-fixed.layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 62px !important;
}

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks>* {
  display: block !important;
}

.demo-inline-spacing>* {
  margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing>* {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
}

.demo-vertical-spacing.demo-only-element> :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-lg>* {
  margin-top: 1.875rem !important;
  margin-bottom: 0 !important;
}

.demo-vertical-spacing-lg.demo-only-element> :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-xl>* {
  margin-top: 5rem !important;
  margin-bottom: 0 !important;
}

.demo-vertical-spacing-xl.demo-only-element> :first-child {
  margin-top: 0 !important;
}

.rtl-only {
  display: none !important;
  text-align: left !important;
  direction: ltr !important;
}

[dir='rtl'] .rtl-only {
  display: block !important;
}

/* Dropdown buttons going out of small screens */
@media (max-width: 576px) {
  #dropdown-variation-demo .btn-group .text-truncate {
    width: 231px;
    position: relative;
  }

  #dropdown-variation-demo .btn-group .text-truncate::after {
    position: absolute;
    top: 45%;
    right: 0.65rem;
  }

  #swm-sm {
    display: block !important;
  }

  #swm-lg {
    display: none !important;
  }
}

@media (min-width: 576px) {
  #swm-sm {
    display: none !important;
  }

  #swm-lg {
    display: block !important;
  }
}

/*
* Layout demo
******************************************************************************/



/* SPIN KIT 
********************************************************************** */
:root {
  --sk-size: 40px;
  --sk-color: #333;
  --icon-button: #523902;
  --title-color: #1a1919;
  --bg-color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.sk-center {
  margin: auto
}

.sk-plane {
  width: var(--sk-size);
  height: var(--sk-size);
  background-color: var(--sk-color);
  animation: sk-plane 1.2s infinite ease-in-out
}

@keyframes sk-plane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg)
  }

  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
  }

  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg)
  }
}

.sk-chase {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  animation: sk-chase 2.5s infinite linear both
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2s infinite ease-in-out both
}

.sk-chase-dot:before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-chase-dot-before 2s infinite ease-in-out both
}

.sk-chase-dot:nth-child(1) {
  animation-delay: -1.1s
}

.sk-chase-dot:nth-child(2) {
  animation-delay: -1s
}

.sk-chase-dot:nth-child(3) {
  animation-delay: -0.9s
}

.sk-chase-dot:nth-child(4) {
  animation-delay: -0.8s
}

.sk-chase-dot:nth-child(5) {
  animation-delay: -0.7s
}

.sk-chase-dot:nth-child(6) {
  animation-delay: -0.6s
}

.sk-chase-dot:nth-child(1):before {
  animation-delay: -1.1s
}

.sk-chase-dot:nth-child(2):before {
  animation-delay: -1s
}

.sk-chase-dot:nth-child(3):before {
  animation-delay: -0.9s
}

.sk-chase-dot:nth-child(4):before {
  animation-delay: -0.8s
}

.sk-chase-dot:nth-child(5):before {
  animation-delay: -0.7s
}

.sk-chase-dot:nth-child(6):before {
  animation-delay: -0.6s
}

@keyframes sk-chase {
  100% {
    transform: rotate(360deg)
  }
}

@keyframes sk-chase-dot {

  80%,
  100% {
    transform: rotate(360deg)
  }
}

@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4)
  }

  100%,
  0% {
    transform: scale(1)
  }
}

.sk-bounce {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative
}

.sk-bounce-dot {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--sk-color);
  opacity: .6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955)
}

.sk-bounce-dot:nth-child(2) {
  animation-delay: -1s
}

@keyframes sk-bounce {

  0%,
  100% {
    transform: scale(0)
  }

  45%,
  55% {
    transform: scale(1)
  }
}

.sk-wave {
  width: var(--sk-size);
  height: var(--sk-size);
  display: flex;
  justify-content: space-between
}

.sk-wave-rect {
  background-color: var(--sk-color);
  height: 100%;
  width: 10%;
  border-radius: 15px;
  animation: sk-wave 1.2s infinite ease-in-out
}

.sk-wave-rect:nth-child(1) {
  animation-delay: -1.2s
}

.sk-wave-rect:nth-child(2) {
  animation-delay: -1.1s
}

.sk-wave-rect:nth-child(3) {
  animation-delay: -1s
}

.sk-wave-rect:nth-child(4) {
  animation-delay: -0.9s
}

.sk-wave-rect:nth-child(5) {
  animation-delay: -0.8s
}

@keyframes sk-wave {

  0%,
  40%,
  100% {
    transform: scaleY(0.4)
  }

  20% {
    transform: scaleY(1)
  }
}

.sk-pulse {
  width: var(--sk-size);
  height: var(--sk-size);
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-pulse 1.2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955)
}

@keyframes sk-pulse {
  0% {
    transform: scale(0)
  }

  100% {
    transform: scale(1);
    opacity: 0
  }
}

.sk-flow {
  width: calc(var(--sk-size)*1.3);
  height: calc(var(--sk-size)*1.3);
  display: flex;
  justify-content: space-between
}

.sk-flow-dot {
  width: 25%;
  height: 25%;
  background-color: var(--sk-color);
  border-radius: 50%;
  animation: sk-flow 1.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s infinite both
}

.sk-flow-dot:nth-child(1) {
  animation-delay: -0.3s
}

.sk-flow-dot:nth-child(2) {
  animation-delay: -0.15s
}

@keyframes sk-flow {

  0%,
  80%,
  100% {
    transform: scale(0.3)
  }

  40% {
    transform: scale(1)
  }
}

.sk-swing {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  animation: sk-swing 1.8s infinite linear
}

.sk-swing-dot {
  width: 45%;
  height: 45%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-swing-dot 2s infinite ease-in-out
}

.sk-swing-dot:nth-child(2) {
  top: auto;
  bottom: 0;
  animation-delay: -1s
}

@keyframes sk-swing {
  100% {
    transform: rotate(360deg)
  }
}

@keyframes sk-swing-dot {

  0%,
  100% {
    transform: scale(0.2)
  }

  50% {
    transform: scale(1)
  }
}

.sk-circle {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative
}

.sk-circle-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0
}

.sk-circle-dot:before {
  content: "";
  display: block;
  width: 15%;
  height: 15%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-circle 1.2s infinite ease-in-out both
}

.sk-circle-dot:nth-child(1) {
  transform: rotate(30deg)
}

.sk-circle-dot:nth-child(2) {
  transform: rotate(60deg)
}

.sk-circle-dot:nth-child(3) {
  transform: rotate(90deg)
}

.sk-circle-dot:nth-child(4) {
  transform: rotate(120deg)
}

.sk-circle-dot:nth-child(5) {
  transform: rotate(150deg)
}

.sk-circle-dot:nth-child(6) {
  transform: rotate(180deg)
}

.sk-circle-dot:nth-child(7) {
  transform: rotate(210deg)
}

.sk-circle-dot:nth-child(8) {
  transform: rotate(240deg)
}

.sk-circle-dot:nth-child(9) {
  transform: rotate(270deg)
}

.sk-circle-dot:nth-child(10) {
  transform: rotate(300deg)
}

.sk-circle-dot:nth-child(11) {
  transform: rotate(330deg)
}

.sk-circle-dot:nth-child(1):before {
  animation-delay: -1.1s
}

.sk-circle-dot:nth-child(2):before {
  animation-delay: -1s
}

.sk-circle-dot:nth-child(3):before {
  animation-delay: -0.9s
}

.sk-circle-dot:nth-child(4):before {
  animation-delay: -0.8s
}

.sk-circle-dot:nth-child(5):before {
  animation-delay: -0.7s
}

.sk-circle-dot:nth-child(6):before {
  animation-delay: -0.6s
}

.sk-circle-dot:nth-child(7):before {
  animation-delay: -0.5s
}

.sk-circle-dot:nth-child(8):before {
  animation-delay: -0.4s
}

.sk-circle-dot:nth-child(9):before {
  animation-delay: -0.3s
}

.sk-circle-dot:nth-child(10):before {
  animation-delay: -0.2s
}

.sk-circle-dot:nth-child(11):before {
  animation-delay: -0.1s
}

@keyframes sk-circle {

  0%,
  80%,
  100% {
    transform: scale(0)
  }

  40% {
    transform: scale(1)
  }
}

.sk-circle-fade {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative
}

.sk-circle-fade-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0
}

.sk-circle-fade-dot:before {
  content: "";
  display: block;
  width: 15%;
  height: 15%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-circle-fade 1.2s infinite ease-in-out both
}

.sk-circle-fade-dot:nth-child(1) {
  transform: rotate(30deg)
}

.sk-circle-fade-dot:nth-child(2) {
  transform: rotate(60deg)
}

.sk-circle-fade-dot:nth-child(3) {
  transform: rotate(90deg)
}

.sk-circle-fade-dot:nth-child(4) {
  transform: rotate(120deg)
}

.sk-circle-fade-dot:nth-child(5) {
  transform: rotate(150deg)
}

.sk-circle-fade-dot:nth-child(6) {
  transform: rotate(180deg)
}

.sk-circle-fade-dot:nth-child(7) {
  transform: rotate(210deg)
}

.sk-circle-fade-dot:nth-child(8) {
  transform: rotate(240deg)
}

.sk-circle-fade-dot:nth-child(9) {
  transform: rotate(270deg)
}

.sk-circle-fade-dot:nth-child(10) {
  transform: rotate(300deg)
}

.sk-circle-fade-dot:nth-child(11) {
  transform: rotate(330deg)
}

.sk-circle-fade-dot:nth-child(1):before {
  animation-delay: -1.1s
}

.sk-circle-fade-dot:nth-child(2):before {
  animation-delay: -1s
}

.sk-circle-fade-dot:nth-child(3):before {
  animation-delay: -0.9s
}

.sk-circle-fade-dot:nth-child(4):before {
  animation-delay: -0.8s
}

.sk-circle-fade-dot:nth-child(5):before {
  animation-delay: -0.7s
}

.sk-circle-fade-dot:nth-child(6):before {
  animation-delay: -0.6s
}

.sk-circle-fade-dot:nth-child(7):before {
  animation-delay: -0.5s
}

.sk-circle-fade-dot:nth-child(8):before {
  animation-delay: -0.4s
}

.sk-circle-fade-dot:nth-child(9):before {
  animation-delay: -0.3s
}

.sk-circle-fade-dot:nth-child(10):before {
  animation-delay: -0.2s
}

.sk-circle-fade-dot:nth-child(11):before {
  animation-delay: -0.1s
}

@keyframes sk-circle-fade {

  0%,
  39%,
  100% {
    opacity: 0;
    transform: scale(0.6)
  }

  40% {
    opacity: 1;
    transform: scale(1)
  }
}

.sk-grid {
  width: var(--sk-size);
  height: var(--sk-size)
}

.sk-grid-cube {
  width: 33.33%;
  height: 33.33%;
  background-color: var(--sk-color);
  float: left;
  animation: sk-grid 1.3s infinite ease-in-out
}

.sk-grid-cube:nth-child(1) {
  animation-delay: .2s
}

.sk-grid-cube:nth-child(2) {
  animation-delay: .3s
}

.sk-grid-cube:nth-child(3) {
  animation-delay: .4s
}

.sk-grid-cube:nth-child(4) {
  animation-delay: .1s
}

.sk-grid-cube:nth-child(5) {
  animation-delay: .2s
}

.sk-grid-cube:nth-child(6) {
  animation-delay: .3s
}

.sk-grid-cube:nth-child(7) {
  animation-delay: 0s
}

.sk-grid-cube:nth-child(8) {
  animation-delay: .1s
}

.sk-grid-cube:nth-child(9) {
  animation-delay: .2s
}

@keyframes sk-grid {

  0%,
  70%,
  100% {
    transform: scale3D(1, 1, 1)
  }

  35% {
    transform: scale3D(0, 0, 1)
  }
}

.sk-fold {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  transform: rotateZ(45deg)
}

.sk-fold-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  transform: scale(1.1)
}

.sk-fold-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--sk-color);
  animation: sk-fold 2.4s infinite linear both;
  transform-origin: 100% 100%
}

.sk-fold-cube:nth-child(2) {
  transform: scale(1.1) rotateZ(90deg)
}

.sk-fold-cube:nth-child(4) {
  transform: scale(1.1) rotateZ(180deg)
}

.sk-fold-cube:nth-child(3) {
  transform: scale(1.1) rotateZ(270deg)
}

.sk-fold-cube:nth-child(2):before {
  animation-delay: .3s
}

.sk-fold-cube:nth-child(4):before {
  animation-delay: .6s
}

.sk-fold-cube:nth-child(3):before {
  animation-delay: .9s
}

@keyframes sk-fold {

  0%,
  10% {
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0
  }

  25%,
  75% {
    transform: perspective(140px) rotateX(0deg);
    opacity: 1
  }

  90%,
  100% {
    transform: perspective(140px) rotateY(180deg);
    opacity: 0
  }
}

.sk-wander {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative
}

.sk-wander-cube {
  background-color: var(--sk-color);
  width: 20%;
  height: 20%;
  position: absolute;
  top: 0;
  left: 0;
  --sk-wander-distance: calc(var(--sk-size) * 0.75);
  animation: sk-wander 2s ease-in-out -2s infinite both
}

.sk-wander-cube:nth-child(2) {
  animation-delay: -0.5s
}

.sk-wander-cube:nth-child(3) {
  animation-delay: -1s
}

@keyframes sk-wander {
  0% {
    transform: rotate(0deg)
  }

  25% {
    transform: translateX(var(--sk-wander-distance)) rotate(-90deg) scale(0.6)
  }

  50% {
    transform: translateX(var(--sk-wander-distance)) translateY(var(--sk-wander-distance)) rotate(-179deg)
  }

  50.1% {
    transform: translateX(var(--sk-wander-distance)) translateY(var(--sk-wander-distance)) rotate(-180deg)
  }

  75% {
    transform: translateX(0) translateY(var(--sk-wander-distance)) rotate(-270deg) scale(0.6)
  }

  100% {
    transform: rotate(-360deg)
  }
}

:root {
  --sk-size: 30px;
  --sk-color: #fff;
  --icon-color: #000000;
}

.sk-wave {
  width: 40px;
  white-space: nowrap
}

.sk-fading-circle .sk-circle {
  margin-top: 0;
  margin-bottom: 0
}

.sk-wave {
  width: 40px;
  white-space: nowrap
}

.sk-fading-circle .sk-circle {
  margin-top: 0;
  margin-bottom: 0
}

/* ********************************************************************** */

.layout-demo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1rem;
}

.layout-demo-placeholder img {
  width: 900px;
}

.layout-demo-info {
  text-align: center;
  margin-top: 1rem;
}

.form-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

#map {
  height: 253px;
  border-radius: 10px;
}

.list-maps {
  height: 60vh;
  border-radius: 10px;
  border: #887758 solid 1px;
  z-index: 0;
}

#dcuMap {
  height: 638px;
  border-radius: 10px;
}

@media (max-width: 576px) {
  #dcuMap {
    height: 500px;
    border-radius: 10px;
  }
}

#rssiMap {
  height: 638px;
  border-radius: 10px;
}

@media (max-width: 576px) {
  #rssiMap {
    height: 500px;
    border-radius: 10px;
  }
}


.custom-map-control-button {
  background-color: #ffffff;
  border: 0;
  border-radius: 15px;
  margin: 10px;
  font: 14px Roboto, Arial, sans-serif;
  overflow: hidden;
  height: 40px;
  width: 20%;
  cursor: pointer;
  margin-top: 15px;
  margin-left: 15px;
  color: #424242;
}

.custom-map-control-button:hover {
  background: rgb(207, 207, 207);
}

.custom-map-control-button2 {
  background-color: var(--bg-color);
  border: 0;
  border-radius: 0px 15px 15px 0px;
  margin: 10px;
  font: 14px Roboto, Arial, sans-serif;
  overflow: hidden;
  height: 40px;
  padding: 27px 10px;
  cursor: pointer;
  margin-top: 15px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.layout_user_id {
  display: flex;
  gap: 10px;
}

.note_swm {
  display: flex;
  justify-content: start;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: small;
  font-style: italic;
  margin-top: 2px;
  margin-bottom: -20px;
  margin-left: 7px;
  color: #188dbb;
}

thead {
  cursor: pointer;
}

thead tr td:hover {
  background: #EFFFE7;
}

.data-terima {
  text-align: center;
  display: flex;
  justify-content: center;
  padding-block: 20px;
}

.body-terima {
  margin: 40px;
}

.table-responsive {
  max-height: 65vh !important;
}

.freeze-header {
  position: sticky;
  top: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: var(--sk-color) !important;
  border-bottom: 1px solid var(--clr-border);
}

.freeze-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--clr-border);
  /* Warna border */
}

.table-separate {
  border-collapse: separate !important;
  border-spacing: 0;
}

.table-border {
  border: 1px solid var(--clr-border) !important;
}

.table-border td {
  border: 1px solid var(--clr-border) !important;
}

#dMap {
  height: 100vh;
}

.btndcu {
  margin-top: 15px;
  background-color: #ffffffea;
  padding-inline: 11px;
  padding-block: 10px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-azy {
  font-size: 50px !important;
}

.btnruler {
  width: 40px;
  margin-right: 10px;
}

.btn-trans {
  width: 200px;
  margin-left: 10px;
  margin-bottom: 0px;
  background-color: #ffffffea;
  padding: 10px;
  border-radius: 10px;
}

.btnDMA {
  cursor: pointer;
}

@media (min-width: 1080px) {
  .dropdown-add {
    right: 0px;
  }
}

.cal-border a {
  border: #d8d8d8 solid;
  border-width: 2px !important;
  border-radius: 10px !important;
}

tbody tr {
  height: 0px !important;
  padding-block: 0px !important;
}

tbody tr td {
  padding-block: 5px !important;
}

#dma_djunjunan_dalam tr td {
  padding-block: 10px !important;
}

.dma_djunjunan_dalam tr td {
  padding-block: 10px !important;
}

#refreshBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #26e640;
  color: white;
  border: none;
  border-radius: 100%;
  cursor: pointer;
}

#refreshBtn:hover {
  background-color: #1f791c;
}

#refreshBtn span {
  font-size: 28px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block: 6px;
  margin-inline: 2px;
}

#reportBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #6f4f99;
  color: white;
  border: none;
  border-radius: 100%;
  cursor: pointer;
}

#reportBtn:hover {
  background-color: #7e7bac;
}

#reportBtn span {
  font-size: 28px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block: 6px;
  margin-inline: 2px;
}

.menu-header:hover {
  background: #eeeeee9c;
  cursor: pointer;
}

.menu-header {
  margin-top: 10px !important;
}

.leaflet-control-logo {
  background-color: white;
  padding: 5px;
  border-radius: 7px;
  border: 2px solid #cecece;
}

.leaflet-control-logo img {
  max-width: 27px;
}

.leaflet-control-my-location {
  background-color: white;
  padding: 7px 9.5px;
  padding-bottom: 5px;
  border-radius: 5px;
  border: 2px solid #aaaaaa;
  cursor: pointer;
}

.leaflet-control-fullscreen {
  background-color: white;
  padding: 4.5px 6px;
  padding-bottom: 0px;
  border-radius: 5px;
  border: 2px solid #aaaaaa;
  cursor: pointer;
  font-size: 22px !important;
}

.timeline-container {
  position: relative;
  margin: 20px 0;
  padding-left: 20px;
  border-left: 2px solid #007bff;
}

.timeline-item {
  position: relative;
  margin-bottom: 20px;
  padding-left: 10px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -7px;
  width: 14px;
  height: 14px;
  background: #007bff;
  border-radius: 50%;
  border: 2px solid #fff;
}

.timeline-item-title {
  font-weight: bold;
  margin-bottom: 5px;
}

.timeline-item-content {
  margin-left: 10px;
}

.timeline-item-status {
  color: #6c757d;
  font-size: 14px;
}

.timeline-photo {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.photo-container {
  margin-top: 10px;
}

.photo-container div {
  font-weight: bold;
  margin-bottom: 5px;
}

.photos-wrapper {
  margin-top: 10px;
}

.view-photo-button {
  margin-bottom: 10px;
}

/* Untuk browser WebKit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 8px;
  /* Lebar scrollbar vertikal */
  height: 8px;
  /* Tinggi scrollbar horizontal */
}

::-webkit-scrollbar-track {
  background: transparent;
  /* Background track transparan */
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  /* Warna thumb dengan transparansi */
  border-radius: 4px;
  /* Membuat ujung thumb rounded */
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
  /* Warna thumb saat hover */
}

/* Menghilangkan panah scrollbar */
::-webkit-scrollbar-button {
  display: none !important;
  /* Menyembunyikan panah scrollbar */
  width: 0;
  height: 0;
}

/* Untuk Firefox */
* {
  scrollbar-width: thin;
  /* Membuat scrollbar lebih tipis */
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  /* Warna thumb dan track */
}

/* Untuk IE dan Edge lama */
body {
  -ms-overflow-style: -ms-autohiding-scrollbar;
  /* Menyembunyikan scrollbar saat tidak digunakan */
}

.custom-style-dropdown {
  position: relative;
  margin: 10px;
  margin-bottom: 18px;
  background: var(--bg-color);
  border-radius: 6px;
}

.map-style-icon-btn {
  background: none;
  border: none;
  font-size: 23px;
  padding: 10px;
  cursor: pointer;
  line-height: 20px;
  padding-bottom: 8px;
  color: var(--icon-color);
}

.map-style-options {
  position: absolute;
  font-size: 14px;
  bottom: 60px;
  right: 0;
  background: var(--bg-color);
  border-radius: 4px;
  z-index: 999;
  width: 120px;
}

.map-style-options.hidden {
  display: none;
}

.map-style-option {
  padding: 8px 12px;
  cursor: pointer;
  color: var(--icon-color);
}

.map-style-option:hover {
  background-color: #f0f0f0;
}

.custom-map-title {
  font-weight: bold;
  font-size: 16px;
  padding: 10px 35px;
  background-color: var(--bg-color);
  border-radius: 8px;
  margin-top: 12px;
  text-align: center;
  color: var(--title-color);
}

.custom-map-title span {
  text-align: center;
  font-size: 14px;
  font-weight: normal;
}

.layer-toggle-container {
  margin-left: 0px;
  margin-block: 2px;
  z-index: 999;
}

.layer-toggle-btn {
  background-color: var(--bg-color);
  border: none;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 4px 4px 4px 8px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  width: 40px;
  height: 30px;
}

.layer-toggle-btn.active {
  width: auto;
  padding-right: 20px;
}

.layer-toggle-btn i {
  font-size: 18px;
  color: var(--icon-button);
  margin-right: 8px;
  flex-shrink: 0;
}

.layer-toggle-text {
  white-space: nowrap;
  opacity: 0;
  font-size: 12px;
  color: var(--title-color);
  font-weight: 400;
}

.layer-toggle-btn.active .layer-toggle-text {
  opacity: 1;
}

.masking-toggle-container {
  margin-bottom: 10px;
  margin-right: 10px;
}

.masking-toggle-btn {
  background-color: var(--bg-color);
  border: none;
  border-radius: 6px;
  width: 43px;
  height: 43px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.2s ease;
}

.masking-toggle-btn i {
  font-size: 24px;
  color: var(--icon-color);
}

.gm-control-active,
.gmnoprint,
.gm-svpc,
.gm-fullscreen-control,
.gm-bundled-control {
  background-color: var(--bg-color) !important;
}

.gmnoprint img,
.gm-control-active img {
  filter: brightness(0) saturate(100%) !important;
}

.gm-fullscreen-control {
  border-radius: 6px !important;
}

.image-box {
  width: 200px;
  height: 300px;
}

.layer-table-container {
  font-size: 14px;
  margin-right: 12px;
  color: var(--icon-color);
}

@media (max-width: 800px) {
  .layer-table-container {
    display: none;
  }

  .custom-map-title {
    font-size: 12px;
    margin-top: 15px;
    padding: 12px 25px;
  }

  .custom-map-title span {
    font-size: 10px;
  }
}

@media (min-width: 800px) {
  .layer-toggle-btn:hover .layer-toggle-text {
    opacity: 1;
  }

  .layer-toggle-btn:hover {
    width: auto;
    padding-right: 20px;
  }
}

.layer-table-container table {
  width: 100%;
}

.layer-table-container th {
  background-color: #f5f5f5;
  position: sticky;
  top: 0;
}

.layer-status {
  font-weight: bold;
}

.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
}

/* Reset default webkit appearance */
.pagination-container button,
.pagination-container select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: var(--bg-color);
  cursor: pointer;
}

/* Prev Button */
.pagination-prev button {
  padding: 8px 12px;
  border-radius: 12px 0 0 12px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Select Slide */
.pagination-slide select {
  padding: 6px 12px;
  border-radius: 0;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  font-size: 14px;
  background: var(--bg-color);
}

/* Next Button */
.pagination-next button {
  padding: 8px 12px;
  border-radius: 0 12px 12px 0;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover effect */
.pagination-container button:hover,
.pagination-slide select:hover {
  background: rgba(0, 0, 0, 0.05);
}