/* Application styles */

/* Job Status Indicator Styles */
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

@keyframes glow {
  0% { box-shadow: 0 0 5px rgba(255, 193, 7, 0.5); }
  50% { box-shadow: 0 0 15px rgba(255, 193, 7, 0.8); }
  100% { box-shadow: 0 0 5px rgba(255, 193, 7, 0.5); }
}

.job-status-indicator {
  cursor: pointer;
  transition: all 0.3s ease;
}

.job-status-indicator:hover {
  transform: scale(1.05);
}

.job-status-running {
  animation: glow 2s infinite;
}

.job-status-icon {
  font-size: 1.2em;
  margin-right: 0.3em;
}

/* Navbar enhancements */
.navbar-item .tags {
  margin-bottom: 0;
}

.navbar .job-status-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
