/* public/css/app.css */

/* ── Fonts ───────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

:root {
  --brand-dark: #111827;
  --brand-accent: #2563eb;
  --surface: #f8fafc;
  --card-border: rgba(0,0,0,.08);
}

html, body {
  font-family: 'DM Sans', sans-serif;
  background: var(--surface);
  color: #1e293b;
}

/* ── Navbar ──────────────────────────────────────────────────────────────── */
.navbar {
  background: var(--brand-dark) !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.navbar-brand {
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

/* ── Auth pages ──────────────────────────────────────────────────────────── */
body.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}
.auth-card-wrap {
  width: 100%;
  max-width: 400px;
  padding: 1rem;
}
.auth-brand {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: -0.02em;
}
.auth-card {
  border: none;
  border-radius: 12px;
}

/* ── Tables ──────────────────────────────────────────────────────────────── */
.table {
  font-size: 0.9rem;
}
.table thead th {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.task-link {
  text-decoration: none;
  color: var(--brand-accent);
}
.task-link:hover {
  text-decoration: underline;
}

/* ── Cards ───────────────────────────────────────────────────────────────── */
.card {
  border: 1px solid var(--card-border);
  border-radius: 10px;
}
.card-header {
  border-bottom: 1px solid var(--card-border);
  padding: .75rem 1rem;
  font-size: .9rem;
}

/* ── Notes ───────────────────────────────────────────────────────────────── */
.notes-scroll {
  max-height: 480px;
  overflow-y: auto;
}
.note-card {
  font-size: .875rem;
  background: #f1f5f9 !important;
  border-color: #e2e8f0 !important;
}
.note-body {
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}

/* ── Badges ──────────────────────────────────────────────────────────────── */
.badge {
  font-weight: 500;
  letter-spacing: .02em;
}

/* ── Misc ────────────────────────────────────────────────────────────────── */
.btn {
  font-weight: 500;
}
.table-secondary td {
  opacity: .65;
}
