* { box-sizing: border-box; }
body {
  font-family: -apple-system, Arial, sans-serif;
  background: #f6f5f1;
  color: #2c2c2a;
  margin: 0;
  direction: rtl;
}
.container { max-width: 900px; margin: 0 auto; padding: 24px; }
.card {
  background: #fff;
  border: 1px solid #e3e1d8;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 16px;
}
h1 { font-size: 22px; }
h2 { font-size: 17px; }
a { color: #185fa5; }
.btn {
  display: inline-block;
  background: #1D9E75;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
}
.btn.secondary { background: #888780; }
.btn.danger { background: #c04828; }
input, textarea, select {
  width: 100%;
  padding: 8px;
  border: 1px solid #d3d1c7;
  border-radius: 6px;
  margin-bottom: 10px;
  font-family: inherit;
  font-size: 14px;
}
.list-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eceae3;
}
.pill {
  background: #f1efe8;
  color: #5f5e5a;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 10px;
}
.pill.pending { background: #faeeda; color: #854f0b; }
.item-box {
  border: 1px solid #e3e1d8;
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 12px;
}
.item-meta { font-size: 12px; color: #888780; margin-bottom: 6px; }
.actions { display: flex; gap: 8px; margin-top: 8px; }
