/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

  /* Typography improvements */
  body {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif;
    letter-spacing: -0.02em;
  }

  
  /* Modern animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(-10px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .card-modern {
    animation: fadeIn 0.4s ease-out;
  }
  
  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }
  
  /* Remove spinners from number inputs */
  input[type="number"]::-webkit-inner-spin-button,
  input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  /* Candidate Label Styles - keep select background white/neutral */
  .select.badge-info,
  .select.badge-success,
  .select.badge-warning,
  .select.badge-accent,
  .select.badge-error,
  .select.badge-neutral,
  .select.badge-ghost {
    background-color: var(--color-base-100);
    border-color: var(--color-base-content);
    color: var(--color-base-content);
  }

.sort-active {
  font-weight: 600;
  color: oklch(var(--color-primary));
}
.sort-inactive {
  opacity: 0.7;
}
.sort-inactive:hover {
  opacity: 1;
}