/*
 * 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.
 */

/* Font Configuration */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Improvements */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.font-display {
  font-family: 'Barlow', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Better text rendering for small text */
.text-sm, .text-xs {
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Improved button typography */
button, .btn {
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Ward List Highlight Animation */
.ward-sidebar-item.highlighted {
  background-color: #dbeafe !important;
  border-left: 4px solid #3b82f6;
  transition: all 0.3s ease;
  transform: translateX(4px);
}

.ward-sidebar-item {
  transition: all 0.3s ease;
}
