/* Custom utility classes */
.bg-primary {
  background-color: #004AAD !important;
}

.bg-primary-dark {
  background-color: #003A87 !important;
}

.bg-secondary {
  background-color: #F8931F !important;
}

.bg-secondary-dark {
  background-color: #D97A0A !important;
}

.text-primary {
  color: #004AAD !important;
}

.text-secondary {
  color: #F8931F !important;
}

/* Button styles */
.btn-primary {
  background-color: #004AAD !important;
  color: white !important;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: #003A87 !important;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: #F8931F !important;
  color: white !important;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background-color: #D97A0A !important;
  transform: translateY(-1px);
} 