/* NNIT Benefits Portal - Styles */

/* Status badges */
.status-submitted { background-color: #dbeafe; color: #1e40af; }
.status-withdrawn { background-color: #f3f4f6; color: #374151; }
.status-hr_approved { background-color: #dcfce7; color: #166534; }
.status-hr_rejected { background-color: #fee2e2; color: #991b1b; }
.status-tpa_processed { background-color: #f3e8ff; color: #7c3aed; }
.status-tpa_returned { background-color: #ffedd5; color: #c2410c; }

/* Animations */
.fade-in {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slide-in {
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from { transform: translateY(-10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

/* Loading spinner */
.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
