/* Bold SaaS Template Styles */

/* Tab buttons */
.tab-btn {
  color: rgba(255, 255, 255, 0.6);
}

.tab-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.tab-btn.active {
  color: white;
  background: #ef4444;
}

/* Focus states */
input:focus {
  outline: none;
  border-color: #ef4444;
}

/* Links */
a {
  transition: all 0.2s ease;
}

/* Mobile drawer */
#mobileDrawer {
  animation: slideDown 0.2s ease-out;
}

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

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

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

