body { font-family: 'Inter', sans-serif; }
.plant-card { transition: transform 0.18s, box-shadow 0.18s; }
.plant-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.13); }
.photo-thumb { width:80px; height:80px; object-fit:cover; border-radius:8px; cursor:pointer; }
.photo-lg { max-height:70vh; max-width:100%; border-radius:12px; }
input[type=file] { display:none; }
.modal-bg { position:fixed; inset:0; background:rgba(0,0,0,0.65); z-index:100; display:flex; align-items:center; justify-content:center; }
.badge-good { background:#dcfce7; color:#166534; }
.badge-fair { background:#fef9c3; color:#854d0e; }
.badge-poor { background:#fee2e2; color:#991b1b; }
.priority-urgent { border-left: 4px solid #dc2626; }
.priority-high    { border-left: 4px solid #f97316; }
.priority-medium  { border-left: 4px solid #eab308; }
.priority-low     { border-left: 4px solid #22c55e; }
.spinner { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
pre { white-space: pre-wrap; word-break: break-all; }
@media print {
  nav, .no-print { display:none !important; }
  body { background: white; }
}
