/* ─── Home Care HR — Custom CSS ──────────────────────────────────────────────── */
/* Minimal additions on top of Tailwind CDN */

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Spinner animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}
.animate-spin { animation: spin 1s linear infinite; }

/* Hide file input default styling */
input[type="file"] { cursor: pointer; }

/* Skill toggle — prevent text selection */
.skill-toggle { user-select: none; }

/* Table responsive */
@media (max-width: 640px) {
  table { font-size: 0.8125rem; }
}

/* Focus ring */
:focus-visible { outline: 2px solid #e55a00; outline-offset: 2px; }

/* Transition defaults */
a, button { transition: color 0.15s, background-color 0.15s, border-color 0.15s, opacity 0.15s; }
