/*
* 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
}

.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
}

.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;
  box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
  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: #ffffff;
  border: 0;
  border-radius: 0px 15px 15px 0px;
  box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
  margin: 10px;
  font: 14px Roboto, Arial, sans-serif;
  overflow: hidden;
  height: 40px;
  padding-inline: 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: 62vh;
  border-radius: 10px;
}

.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 */
}

#tableKinerja td,
#tableKinerja th {
  text-align: center;
  vertical-align: middle;
  border: 1px solid #dadada;
}

#tableKinerja td:first-child {
  text-align: left;
}

#tableKinerja40k td,
#tableKinerja40k th {
  text-align: center;
  vertical-align: middle;
  border: 1px solid #dadada;
}

#tableKinerja40k td:first-child {
  text-align: left;
}

.hidden-row,
.hidden-row-40k {
  display: none;
}

.parent-row,
.parent-row-40k {
  cursor: pointer;
}

.hidden-col {
  display: none;
}

/* FREEZE KOLOM */
#tableKinerja40k,
#tableKinerja {
  overflow-x: auto;
  max-width: 100%;
}

#tableKinerja40k table,
#tableKinerja table {
  border-collapse: separate;
  border-spacing: 0;
  min-width: max-content;
}

#tableKinerja40k thead,
#tableKinerja thead {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #fff;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

#tableKinerja40k thead td:first-child,
#tableKinerja thead td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #fff;
}

#tableKinerja40k tbody td:first-child,
#tableKinerja tbody td:first-child {
  position: sticky;
  left: 0;
  z-index: 0;
  background: #fff;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.td-freeze-1 {
  border-top: 2px solid #dee2e6 !important;
  border-right: 2px solid #dee2e6 !important;
  border-left: 2px solid #dee2e6 !important;
  border-bottom: none !important;
}

.td-freeze-2 {
  border-right: 2px solid #dee2e6 !important;
  border-left: 2px solid #dee2e6 !important;
  border-top: none !important;
  border-bottom: none !important;
}

.td-freeze-3 {
  border-bottom: 2px solid #dee2e6 !important;
  border-right: 2px solid #dee2e6 !important;
  border-left: 2px solid #dee2e6 !important;
  border-top: none !important;
}

.table-green-40k,
.table-green-44k,
.table-green-44k td,
.table-green-40k td {
  background-color: #557a57 !important;
  color: white !important;
}

.hidden-col-area {
  display: none;
}

#tableTV40k table.table.table-bordered {
  border-collapse: collapse !important;
}

#tableTV40k table.table.table-bordered th,
#tableTV40k table.table.table-bordered td {
  border: 1px solid #6e6e6e !important;
}

/* Biar header tetap terbaca saat scroll (opsional) */
#tableTV40k .freeze-header th {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}