.function-item {
    background: #f7fafc;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.function-name {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #4c51bf;
}

.function-details {
    font-size: 0.9em;
    color: #718096;
}

.function-usage {
    background: #e6fffa;
    color: #234e52;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
}

.variable-item {
    background: #fff5f5;
    border-left: 4px solid #f56565;
}

.class-item {
    background: #f0fff4;
    border-left: 4px solid #48bb78;
}

.issues-section {
    margin-top: 30px;
}

.issue-card {
    background: #fed7d7;
    border: 2px solid #feb2b2;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
}

.issue-title {
    font-weight: bold;
    color: #c53030;
    margin-bottom: 5px;
}

.issue-details {
    color: #742a2a;
}

.recommendations {
    background: #d6f5d6;
    border: 2px solid #9ae6b4;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.recommendations h3 {
    color: #276749;
    margin-bottom: 15px;
}

.recommendation-item {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.recommendation-item:before {
    content: "💡";
    position: absolute;
    left: 0;
}

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

.analyzing {
    animation: pulse 2s infinite;
}
