/* Urgency indicators and action-based pipeline styling */
.urgent-pulse {
    animation: urgent-pulse 2s ease-in-out infinite;
    border-width: 2px !important;
}

@keyframes urgent-pulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
        transform: scale(1.02);
    }
}

.category-card {
    position: relative;
    transition: all 0.3s ease;
    min-height: 250px;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.category-card .badge {
    font-size: 0.65rem;
    padding: 0.25em 0.5em;
    z-index: 10;
}

.action-description {
    line-height: 1.3;
    min-height: 2.5rem;
}

/* Enhanced visual hierarchy */
.category-name {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-count small {
    display: block;
    font-size: 0.7rem;
    font-weight: normal;
}

/* Button styling improvements */
.category-card .btn {
    min-width: 90px;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .category-card {
        min-height: 200px;
    }
    
    .category-icon span {
        font-size: 2rem !important;
    }
    
    .category-count {
        font-size: 1.5rem !important;
    }
}