/* AI Match Badge Component Styles */

.ai-match-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    gap: 8px;
}

.ai-match-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.ai-match-badge.loading {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.ai-match-badge.ai-match-excellent {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.ai-match-badge.ai-match-good {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}

.ai-match-badge.ai-match-moderate {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.ai-match-badge.ai-match-weak {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
}

.ai-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.ai-score-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.ai-score-value {
    font-size: 0.95rem;
    font-weight: 700;
}

.ai-confidence {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.9;
}

.ai-recommendation {
    margin-left: 4px;
}

.recommendation-badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.5);
}

.recommendation-hire {
    background: rgba(255,255,255,0.25);
}

.recommendation-interview {
    background: rgba(255,255,255,0.2);
}

.recommendation-maybe {
    background: rgba(255,255,255,0.15);
}

.recommendation-reject {
    background: rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ai-match-badge {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .ai-icon {
        font-size: 1rem;
    }

    .ai-confidence {
        display: none; /* Hide confidence on mobile */
    }
}
