/* styles.css */

@tailwind base;
@tailwind components;
@tailwind utilities;

/* Ensure emoji gets proper font fallback */
body {
  font-family: system-ui, -apple-system, "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

/* Intranet links */
a.internal {
  color: #ba5d1b; /* Tailwind orange-400 */
  font-weight: bold;
}

a.internal:hover {
  color: #fdba74; /* Tailwind orange-300 */
  text-decoration: underline;
  font-weight: bold;
}

/* Public links */
a.external {
    color: #aaa;
}

a.external:hover {
    color: #eee;
    text-decoration: underline;
}
