/* =========================================================
   BASE.CSS
   Style dasar global
   ========================================================= */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Ubuntu', sans-serif;
  overflow-x: hidden;
  background-color: #ffffff;
  color: #212529;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 5px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  font-weight: bold;
}

.d-none {
  display: none !important;
}

.invisible {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}