/* Office page specific styles (lean; reuse base.css utilities) */
.hero {}

/* Timeline */
.timeline { position: relative; margin-left: 8px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--gray-200); }
.timeline__item { position: relative; padding-left: 32px; margin-bottom: var(--space-24); }
.timeline__item::before { content: ""; position: absolute; left: 2px; top: 6px; width: 12px; height: 12px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 0 2px #fff; }
.timeline__year { font-weight: var(--fw-semibold); margin-bottom: 6px; color: var(--text); }
.timeline__content { color: var(--muted); }

/* Team cards */
.team-card { min-height: 100%; }
.team-card .badge { margin-top: var(--space-16); }

/* Chat panel */
.chat-panel { position: fixed; right: 16px; bottom: 76px; width: min(360px, 92vw); background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
.chat-panel__header { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border-bottom: 1px solid var(--gray-200); }
.chat-panel__body { padding: 12px; max-height: 280px; overflow: auto; display: grid; gap: 10px; background: var(--surface); }
.chat-panel__footer { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 10px; border-top: 1px solid var(--gray-200); }
.chat-msg { padding: 10px 12px; border-radius: var(--radius-md); max-width: 80%; }
.chat-msg.bot { background: #e6f6fe; color: var(--primary-700); justify-self: start; }
.chat-msg.user { background: #eef2f7; color: var(--text); justify-self: end; }

/* Map container inherits ratio helpers from base.css */

/* Form feedback */
#formMessage.success { color: var(--success); }
#formMessage.error { color: var(--danger); }

/* Small tweaks */
#locatie .card table th { width: 90px; }
