body {
  font-family: system-ui;
  margin: 0;
  padding: 10px;
  padding-bottom: 80px; /* 🔥 IMPORTANT */
  background: #f5f5f5;
}

h2 {
  text-align: center;
}

.card {
  background: white;
  padding: 16px;
  margin-bottom: 10px;
  border-radius: 12px;
  border-left: 6px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

button {
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

/* STATUS COLORS */
.status-paid { color: green; }
.status-pending { color: orange; }
.status-unpaid { color: red; }

.status-prepared { color: green; }
.status-not-prepared { color: red; }

.status-dispatched { color: blue; }
.status-delivered { color: green; }

.status-green { color: green; }
.status-red { color: red; }
.status-blue { color: blue; }
.status-orange { color: orange; }

.nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  background: black;
}

.nav button {
  flex: 1;
  padding: 10px 5px;
  border: none;
  background: black;
  color: white;
  font-size: 12px;
}


.navbar {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  background: black;
  color: white;
}

.navbar button {
  flex: 1;
  background: none;
  color: white;
}
