/**
 * UniteApps Tenant-Specific CSS Overrides
 * 
 * Optional CSS customizations for UniteApps tenant
 */

/* Custom animations */
@keyframes uniteapps-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply fade-in animation to cards */
.calculator-card {
  animation: uniteapps-fade-in 0.3s ease-out;
}

/* Custom hover effects */
.calculator-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 102, 204, 0.15);
}
