:root {
  /* Surfaces */
  --bg: #14181c;
  --bg-elevated: #1c2126;
  --bg-card: #232830;
  --border: #2f3640;
  --border-soft: #262c34;

  /* Text */
  --text-primary: #e8ebee;
  --text-secondary: #9aa4b0;
  --text-muted: #6b7280;

  /* Today marker */
  --today-ring: #e8ebee;

  /* Event type colors */
  --type-dropoff: #4f8ff0;
  --type-dropoff-bg: #1b2838;
  --type-pickup: #f0654f;
  --type-pickup-bg: #34201d;
  --type-meetgreet: #b48ff0;
  --type-meetgreet-bg: #262038;
  --type-stay: #45b39a;
  --type-stay-bg: #16332c;
  --type-daycare-badge: #e0a940;

  /* Layout */
  --radius-sm: 6px;
  --radius-md: 10px;
  --gap: 8px;

  /* Type */
  --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
}
