/* Custom Animations & Polish for LüftFix */

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

.airing-pulse {
  animation: pulse-ring 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

/* Nav Tabs */
.nav-tab.active {
  color: #0284c7;
  border-color: #0284c7;
  background-color: rgba(2, 132, 199, 0.05);
}

.nav-tab:not(.active) {
  border-color: transparent;
}

/* Smooth modal transitions */
.modal-active {
  display: flex !important;
}

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

/* Print Styles for direct browser printing fallback */
@media print {
  header, footer, .nav-tab, button, #globalAiringBanner, .no-print {
    display: none !important;
  }
  body {
    background: white !important;
    color: black !important;
  }
  .tab-content {
    display: block !important;
  }
}
