.dependency-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.dependency-link {
    background: #edf2f7;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9em;
    display: flex;
    align-items: center;
}

.dependency-type {
    color: #4a5568;
    font-size: 0.8em;
    margin-right: 8px;
    font-weight: bold;
}

.flow-visualization {
    background: #f7fafc;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.flow-step {
    display: flex;
    align-items: center;
    padding: 10px;
    border-left: 4px solid #667eea;
    margin-bottom: 10px;
    background: white;
    border-radius: 5px;
}

.step-number {
    background: #667eea;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
}

.step-content {
    flex: 1;
}

.step-type {
    font-weight: bold;
    color: #2d3748;
}

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

.function-analysis {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.function-category {
    margin-bottom: 25px;
}

.function-category h3 {
    color: #2d3748;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}
