/* Active Project Indicator */
.project-item {
  position: relative;
}

.active-project-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 10px;
  height: 10px;
  background-color: #00ff6a;
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 0 0 0 rgba(0, 255, 106, 1);
  animation: pulse-green 2s infinite;
}

/* Pulse animation for the green dot */
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 106, 0.7);
  }
  
  70% {
    box-shadow: 0 0 0 8px rgba(0, 255, 106, 0);
  }
  
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 106, 0);
  }
}

/* Optional: Add a tooltip on hover */
.active-project-badge::after {
  content: "Active";
  position: absolute;
  top: 50%;
  right: calc(100% + 8px);
  transform: translateY(-50%);
  background-color: rgba(0, 255, 106, 0.95);
  color: #000;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.active-project-badge:hover::after {
  opacity: 1;
}
