/* Custom styles for Church Financial Management System */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Smooth transitions */
.transition-all {
  transition: all 0.2s ease;
}

/* Chart canvas fix */
canvas {
  max-height: 250px;
}

/* Table row animation */
tbody tr {
  transition: background-color 0.15s ease;
}

/* Input focus states */
input:focus, select:focus {
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

/* Badge pulse animation for notifications */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Card hover lift */
.hover\:shadow-md:hover {
  transform: translateY(-1px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Modal overlay */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

/* Korean font optimization */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
}

/* Print styles */
@media print {
  aside { display: none !important; }
  header { display: none !important; }
}
