body {
  background-color: #f8f9fa;
  font-family: 'Segoe UI', sans-serif;
  font-size: 11pt;
  padding-bottom: 80px;
}

.bg-purple {
  background-color: #6f42c1;
}

.text-purple {
  color: #6f42c1;
}

.rounded-20 {
  border-radius: 20px;
}

.profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* Sticky bottom navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #dee2e6;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
}

/* Menu style */
.bottom-nav a {
  color: #6f42c1;
  text-decoration: none;
  text-align: center;
  font-size: 12px;
  transition: all 0.2s ease;
}

.bottom-nav i {
  font-size: 20px;
  display: block;
  margin-bottom: 2px;
  transition: transform 0.2s ease;
}

/* Hover effect */
.bottom-nav a:hover {
  transform: scale(1.1);
}

/* Klik effect (bounce) */
.bottom-nav a:active {
  animation: bounce 0.3s ease;
}

@keyframes bounce {
  0%   { transform: scale(1); }
  50%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}

/* Active menu (opsional) */
.bottom-nav a.active {
  color: white;
  background-color: #6f42c1;
  border-radius: 12px;
  padding: 6px 12px;
}

/* Icon transaksi */
.transaction-icon {
  font-size: 24px;
  margin-right: 12px;
  color: #6f42c1;
}

/* Kartu transaksi */
.transaction-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  padding: 16px;
  margin-bottom: 12px;
  background-color: #fff;
  display: flex;
  align-items: center;
}

/* Tombol tambah transaksi */
.add-btn {
  width: 100%;
  background-color: #6f42c1;
  color: white;
  border-radius: 20px;
  padding: 12px;
  border: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.add-btn:hover {
  background-color: #5a32a3;
}

/* Header dan total keuangan */
.total-box {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  padding: 16px;
  margin-bottom: 20px;
}
