body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fefefe;
  max-width: 430px;
  margin: auto;
  padding: 16px;
  padding-bottom: 100px;
}

/* Wrapper Slider */
.image-banner-slider {
  margin: 20px 15px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  height: 180px;
  background-color: #f5f5f5;
}

/* Track container */
.slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease-in-out;
}

/* Gambar dalam slider */
.slider-track img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  border-radius: 16px;
}

/* Overlay hitam transparan */
.image-banner-slider .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.45));
  z-index: 1;
  pointer-events: none;
  border-radius: 16px;
}

/* Indikator slider */
.slider-indicator {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

/* Bar indikator (bulat modern) */
.slider-indicator .bar {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.slider-indicator .bar:hover {
  background-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.slider-indicator .bar.active {
  background-color: #ffffff;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.7);
  transform: scale(1.3);
}

/* FILTER GROUP STYLING */
.filter-group {
  margin-bottom: 24px;
}

.filter-group h4 {
  font-size: 15px;
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 8px;
}

/* FILTERS */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Filter Button Base Style */
.filters .filter-btn {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid #c8e6c9;
  background-color: #f1f8e9;   /* HIJAU MUDA DEFAULT */
  color: #2e7d32;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hover Effect */
.filters .filter-btn:hover {
  background-color: #dcedc8;   /* Lebih gelap sedikit pas hover */
  border-color: #aed581;
}

/* Active Filter Style */
.filters .filter-btn.active {
  background-color: #4caf50;   /* HIJAU TUA AKTIF */
  color: white;
  border-color: #388e3c;
  box-shadow: 0 2px 6px rgba(76, 175, 80, 0.3);
}

/* Transisi halus saat filter berubah */
.report-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 16px;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.report-cards.hidden {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

/* Placeholder jika tidak ada data */
.no-data {
  text-align: center;
  padding: 20px;
  color: #aaa;
  font-style: italic;
  border: 1px dashed #ddd;
  border-radius: 12px;
  background-color: #f9f9f9;
}

/* CATEGORY SECTION */
.categories {
  margin-top: 24px;
}

.categories h3 {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 18px;
  color: #2e7d32;
}

/* Responsive Grid for Bulanan */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
}

/* Category Card (Bulanan) */
.category-card {
  background-color: #ffffff;
  border: 1px solid #c8e6c9;
  border-radius: 16px;
  padding: 16px 8px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: #2e7d32;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

/* Hover Effect */
.category-card:hover {
  background-color: #f1f8e9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
  cursor: pointer;
}

/* Icon inside category */
.category-card i {
  font-size: 28px;
  color: #4caf50;
}

/* Report Card (Harian) */
.report-card {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  color: #333;
  transition: all 0.2s ease-in-out;
}

/* Hover Effect for Harian Card */
.report-card:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Hidden Class */
.hidden {
  display: none;
}

.menu-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 340px;
  width: 90%;
  padding: 10px 20px;
  background: linear-gradient(90deg, #2e7d32, #2e7d32);
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.8s ease-out;
  z-index: 999;
}

.menu-bar ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0;
  padding: 0;
}

.menu-bar li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.3s ease;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-bar li a i {
  font-size: 18px;
}

.menu-bar li a:hover {
  background: rgba(255, 255, 255, 0.15);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* === Tambahan Style === */

/* NOTIFICATION BANNER */
.notification-banner {
  background-color: #e8f5e9;
  color: #2e7d32;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  text-align: center;
}

/* RINGKASAN / SUMMARY */
.summary-section {
  background-color: #f9fbe7;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.summary-section h3 {
  margin: 0 0 12px;
  font-size: 16px;
  color: #33691e;
}

.summary-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-card {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #c5e1a5;
  padding: 10px 12px;
  border-radius: 10px;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.summary-card:hover {
  background-color: #f1f8e9;
  box-shadow: 0 2px 6px rgba(104, 159, 56, 0.2);
}

.summary-card i {
  font-size: 24px;
  color: #689f38;
}

.summary-card div {
  font-size: 14px;
  color: #333;
}