.hover-scale:hover {
transform: scale(1.05);
transition: transform 0.3s ease;
}

.pulse-text {
animation: pulseText 2s infinite;
}

@keyframes pulseText {
0% { color: #1e40af; }
50% { color: #3b82f6; }
100% { color: #1e40af; }
}

.glow-icon {
transition: all 0.3s ease-in-out;
}

.glow-icon:hover {
filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.6));
transform: scale(1.1);
}

.special-card {
background: linear-gradient(135deg, #ffffff, #f9fafb);
border-radius: 16px;
}
/* this for loader */ 
@keyframes shimmer {
  0%   { filter: brightness(1); }
  50%  { filter: brightness(1.4); }
  100% { filter: brightness(1); }
}

#ajax_loader img {
  animation: shimmer 2s ease-in-out infinite;
}
		
		
.team-lead-item {
    width: 220px;
    cursor: grab;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.team-lead-item:active {
    cursor: grabbing;
}

.drag-chosen {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

.drag-ghost {
    opacity: 0.4;
}

.manager-drop-zone {
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dragging-mode .manager-drop-zone {
    border: 2px dashed #dcdcdc;
}

.manager-drop-zone.dragover-active {
    border: 2px dashed #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
}

@keyframes att_pulse {
	0%, 100% { transform: scale(1);   opacity: 1;   }
	50%       { transform: scale(1.2); opacity: 0.8; }
}
@keyframes att_countdown_change {
	0%   { transform: scale(1.5); opacity: 0; }
	100% { transform: scale(1);   opacity: 1; }
}
.att-countdown-animate {
	animation: att_countdown_change 0.3s ease-out forwards;
}