* { font-family: 'Cairo', system-ui, sans-serif; }
body { margin: 0; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  color: #fff;
}

.overdue-row { background-color: #fef2f2 !important; }
.overdue-glow { box-shadow: 0 0 0 2px #fecaca; }

.fade-in { animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.nav-link.active { background-color: rgba(255,255,255,0.18); border-right: 3px solid #5eead4; }

table { border-collapse: collapse; }
.modal-overlay { backdrop-filter: blur(2px); }

.board-col { min-width: 280px; }
.gallery-card:hover { transform: translateY(-3px); transition: transform .2s; }

input, select, textarea {
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: #14b8a6;
  box-shadow: 0 0 0 3px rgba(20,184,166,0.15);
}
