@font-face {
  font-family: 'DIN';
  src: url('../fonts/DINNextLTPro-Regular.ttf');
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'DIN', 'Roboto', sans-serif;
  font-weight: 900;
}
body {font-size:18px;}
    /* Container utama */
.scrolling-tabs-wrapper {
  position: relative;
}
.ctn a {color: red;text-decoration:none;}
/* Tombol carousel */
.btn-carousel {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10; /* Pastikan di atas tab */
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Kiri */
.carousel-control-prev {
  left: -20px; /* Sesuaikan */
}
/* Kanan */
.carousel-control-next {
  right: -20px; /* Sesuaikan */
}
/* Ukuran panah kecil */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 12px;
  height: 12px;
  background-size: contain;
}
/* Tombol tetap seperti sebelumnya */
.btn-carousel {
  width: 30px;
  height: 30px;
}
/* Hapus highlight di semua input ketika focus */
.form-control input:focus, textarea:focus, select:focus {
  outline: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}
/* Hapus autofill background di Chrome */
.form-control input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  box-shadow: 0 0 0px 1000px white inset !important;
  -webkit-text-fill-color: #000 !important;
}