/* Stale Case Alerts Styling */
.stale-case-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 8px;
}

.stale-case-badge.warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffc107;
}

.stale-case-badge.critical {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.stale-case-badge.urgent {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #dc3545;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.stale-alert-summary {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.stale-stat-card {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    border-radius: 8px;
    background: white;
    border: 2px solid #e0e0e0;
}

.stale-stat-card.warning {
    border-color: #ffc107;
    background: #fff9e6;
}

.stale-stat-card.critical {
    border-color: #ff9800;
    background: #fff3e0;
}

.stale-stat-card.urgent {
    border-color: #dc3545;
    background: #ffe6e6;
}

.stale-stat-number {
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0;
}

.stale-stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
}
