body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f4fef4;
  color: #333;
}

.app-header {
  background-color: #1e944d;
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 36px;
}

.saldo-box {
  text-align: right;
}

.saldo-box h3 {
  margin: 4px 0;
}

.quick-actions {
  display: flex;
  justify-content: space-around;
  padding: 15px 10px;
  background: white;
}

.action {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  cursor: pointer;
}

.action img {
  width: 36px;
  height: 36px;
  margin-bottom: 5px;
}

.banner img {
  width: 100%;
  display: block;
}

.section-title {
  margin: 15px;
  font-size: 16px;
  font-weight: bold;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 0 15px 30px;
}

.menu-item {
  text-align: center;
  background: white;
  padding: 10px 5px;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
  cursor: pointer;
}

.menu-item:hover {
  transform: scale(1.03);
}

.menu-item img {
  width: 36px;
  height: 36px;
  margin-bottom: 5px;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background-color: white;
  box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
  padding: 5px 0;
}

.nav-item {
  flex: 1;
  text-align: center;
  font-size: 12px;
}

.nav-item img {
  height: 24px;
  display: block;
  margin: 0 auto 3px;
}

.nav-item.active {
  color: green;
  font-weight: bold;
}

.nav-item.center img {
  width: 40px;
  height: 40px;
}

.content {
  padding: 20px;
}

input {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

button {
  background-color: #1e944d;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #157d3e;
}

/* Efek animasi */
@keyframes bounce {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.bounce {
  animation: bounce 0.4s ease;
}

.fade-in {
  animation: fadeIn 0.5s ease;
}
