/* ======== CSS KAMU (tetap gua biarin) ======== */
body {
  margin-top: 40px;
}
/* 
body::before {
  content: "XS";
  color: red;
  font-size: 2rem;
  font-weight: bold;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
}
 */
.box {
  background-color: lightblue;
  border: 1px solid blue;
  min-height: 50px;
  font-size: 2rem;
}

.custom-purple-gradient {
  background: none;
  background-image: linear-gradient(to right, #5e35b1, #8e24aa);
}
/* 
@media (min-width: 576px) {
  body::before {
    content: "SM";
  }
}

@media (min-width: 768px) {
  body::before {
    content: "MD";
  }
}

@media (min-width: 992px) {
  body::before {
    content: "LG";
  }
}

@media (min-width: 1200px) {
  body::before {
    content: "XL";
  }
}

@media (min-width: 1400px) {
  body::before {
    content: "XXL";
  }
}
 */


html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden; /* MATIKAN SCROLL GLOBAL */
}

/* Container utama untuk dashboard */
.container-fluid[style="margin-top: 60px"] {
  height: calc(100vh - 56px);
  overflow: hidden;
}

/* Row utama */
.container-fluid[style="margin-top: 60px"] .row {
  height: 100%;
  margin: 0;
}

/* Sidebar scroll */
.sidebar {
  height: calc(100vh - 56px);
  overflow-y: auto;
}

/* Main content scroll */
.main-content {
  height: calc(100vh - 56px);
  overflow-y: auto;
  padding-bottom: 50px;
}

