/* Food Portal — small custom touches on top of Bootstrap */

body {
  background: #f7f7f5;
}

/* Big tap-friendly dashboard buttons */
.dashboard-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 180px;
  border-radius: 1rem;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  transition: transform .1s ease-in-out;
}
.dashboard-tile:active {
  transform: scale(0.98);
}
.dashboard-tile .tile-icon {
  font-size: 2.75rem;
}

/* Category / module link cards (Income & Expense sub-menus) */
.menu-card {
  display: block;
  text-decoration: none;
  border-radius: .75rem;
  padding: 1.1rem 1.25rem;
  margin-bottom: .75rem;
  background: #fff;
  border: 1px solid #e5e5e0;
  color: #222;
  font-weight: 600;
  font-size: 1.05rem;
}
.menu-card:hover,
.menu-card:active {
  border-color: #2f5233;
  background: #eaf1e7;
  color: #1f3a22;
}
.menu-card small {
  display: block;
  font-weight: 400;
  color: #666;
  font-size: .85rem;
  margin-top: .15rem;
}

/* Comfortable tap targets on small screens */
@media (max-width: 576px) {
  .btn, .form-control, .form-select {
    font-size: 1rem;
  }
  table.table td, table.table th {
    font-size: .9rem;
  }
}

.balance-negative {
  color: #b02a37;
  font-weight: 600;
}
.balance-positive {
  color: #1f7a3d;
  font-weight: 600;
}
