/* public/hire/hire-core.css */
#hireApp {
  background: #0f172a;
  color: #e2e8f0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.2s ease;
}
#hireContent {
  flex: 1;
  padding: 1.5rem;
  position: relative;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}