body {
  font-family: 'Roboto', sans-serif;
  background-color: #F5F5F5;
  color: #333333;
}

.navbar {
  background-color: #FFFFFF; /* Warna latar belakang putih clean modern */
}

.navbar-brand img {
  height: 40px;
}

.nav-link {
  color: #8BC34A !important; /* Warna teks navigasi */
}

.nav-link:hover {
  color: #FF9800 !important; /* Warna teks saat hover */
}

.breadcrumb {
  background-color: #FFFFFF;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #8BC34A;
}

.breadcrumb-item a {
  color: #8BC34A;
}

.breadcrumb-item a:hover {
  color: #FF9800;
}

.container h2, .container h3 {
  color: #4d4f4f; /* Warna judul */
  margin-bottom: 20px;
}

.btn-primary {
  background-color: #f83838; /* Warna tombol */
  border-color: #f83838;
}

.btn-primary:hover {
  background-color: #E67E22;
  border-color: #E67E22;
}

.alert-info {
  background-color: #D1ECF1;
  border-color: #BEE5EB;
  color: #0C5460;
}

.form-group label {
  font-weight: bold;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table thead th {
  background-color: #8BC34A;
  color: white;
}

.img-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-container img {
  max-width: 100%;
  height: auto;
}

.img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.img-grid img {
  max-width: 100%;
  height: auto;
}

.result-container {
  background-color: #F0F0F0;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.result-item {
  margin-bottom: 20px;
}

.result-item h4 {
  color: #03A9F4;
}

.result-item p {
  font-size: 18px;
  color: #333333;
}

.debug-container {
  background-color: #FFF3E0;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.debug-item {
  margin-bottom: 10px;
}

.debug-item p {
  font-size: 16px;
  color: #333333;
}

.bubble-box {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 40px; /* Menambah jarak dari atas */
}

.bubble-box h2, .bubble-box h3 {
  color: #333333; /* Warna judul dalam bubble box */
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 2s ease-in-out;
}

@keyframes slideIn {
  from {
      transform: translateX(-100%);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }
}

.slide-in {
  animation: slideIn 1s ease-in-out;
}
