/* Custom overrides & utilities on top of Tailwind CDN */
:root { --brand: #0b1220; }

html, body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection { background: #93c5fd; color: #0b1220; }

/* Slightly softer card shadow for elements using the 'shadow' class */
.shadow { box-shadow: 0 10px 20px rgba(0,0,0,.06); }

/* Buttons hover tweak for non-Tailwind environments (kept mild) */
a:hover, button:hover { filter: brightness(0.98); }

/* Print styles for recruiters saving to PDF */
@media print {
  header, nav, .no-print { display: none !important; }
  body { background: #fff; color: #000; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
  .rounded-2xl { border-radius: 12px !important; }
  .border { border-color: #ddd !important; }
}
